summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2017-08-12 15:42:22 +0200
committer Willy Sudiarto Raharjo2017-08-12 15:42:22 +0200
commit0acb81bf50e8f16a957c5e85b9dc5e18ad2913e1 (patch)
tree73a20dc00b88f1cf405086992f9dfaad5fe6fde1 /misc
parent86fcfb735701b1a24ca1eaf7192a9b1b16d9bf5c (diff)
downloadslackbuilds-0acb81bf50e8f16a957c5e85b9dc5e18ad2913e1.tar.gz
misc/curtain: Removed (upstream is gone).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/curtain/README3
-rw-r--r--misc/curtain/curtain.SlackBuild82
-rw-r--r--misc/curtain/curtain.info10
-rw-r--r--misc/curtain/doinst.sh10
-rw-r--r--misc/curtain/slack-desc19
5 files changed, 0 insertions, 124 deletions
diff --git a/misc/curtain/README b/misc/curtain/README
deleted file mode 100644
index 4b669b598f..0000000000
--- a/misc/curtain/README
+++ /dev/null
@@ -1,3 +0,0 @@
-Curtain is a tool that show a movable and resizable curtain on the desktop
-screen. It's primary function is for presentations and in conjunction with
-tools like ardesia.
diff --git a/misc/curtain/curtain.SlackBuild b/misc/curtain/curtain.SlackBuild
deleted file mode 100644
index f6fd40db2c..0000000000
--- a/misc/curtain/curtain.SlackBuild
+++ /dev/null
@@ -1,82 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for curtain
-
-# Written by Geoff Ritter < geoff dot ritter at gmail dot com >
-
-# Public Domain
-
-PRGNAM=curtain
-VERSION=${VERSION:-0.3}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./autogen.sh \
- --prefix=/usr \
- --libdir=/usr/lib$LIBDIRSUFFIX \
- --mandir=/usr/man \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/misc/curtain/curtain.info b/misc/curtain/curtain.info
deleted file mode 100644
index 5cf2794d01..0000000000
--- a/misc/curtain/curtain.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="curtain"
-VERSION="0.3"
-HOMEPAGE="http://code.google.com/p/ardesia/"
-DOWNLOAD="http://ardesia.googlecode.com/files/curtain-0.3.tar.gz"
-MD5SUM="67bd5586d8a19233d047645f74ebf23f"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Geoff Ritter"
-EMAIL="geoff dot ritter at gmail dot com"
diff --git a/misc/curtain/doinst.sh b/misc/curtain/doinst.sh
deleted file mode 100644
index 4a25de5e6f..0000000000
--- a/misc/curtain/doinst.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
-
diff --git a/misc/curtain/slack-desc b/misc/curtain/slack-desc
deleted file mode 100644
index e5e32b2350..0000000000
--- a/misc/curtain/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description.
-# Line up the first '|' above the ':' following the base package name, and
-# the '|' on the right side marks the last column you can put a character in.
-# You must make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-curtain: curtain (Display a curtain on the desktop)
-curtain:
-curtain: Curtain is a tool that show a movable and resizable curtain on the
-curtain: desktop screen. It's primary function is for presentations and in
-curtain: conjunction with tools like ardesia.
-curtain:
-curtain:
-curtain:
-curtain:
-curtain:
-curtain: