diff options
author | Erik Hanson <erik@slackbuilds.org> | 2012-08-06 19:35:16 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-08-14 22:30:17 -0500 |
commit | f25b7788b86f9852dfa8b79a559e3e79c44cc4e1 (patch) | |
tree | 5d7eb04da298557f6cd299c84ea36bde566be3e4 /system | |
parent | 896e0cb627c853d11c0cf6f1328e1b16dde03951 (diff) | |
download | slackbuilds-f25b7788b86f9852dfa8b79a559e3e79c44cc4e1.tar.gz |
system/halevt: Removed by request of maintainer.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/halevt/README | 14 | ||||
-rw-r--r-- | system/halevt/halevt.SlackBuild | 89 | ||||
-rw-r--r-- | system/halevt/halevt.info | 10 | ||||
-rw-r--r-- | system/halevt/slack-desc | 19 |
4 files changed, 0 insertions, 132 deletions
diff --git a/system/halevt/README b/system/halevt/README deleted file mode 100644 index a3c4affb24..0000000000 --- a/system/halevt/README +++ /dev/null @@ -1,14 +0,0 @@ -Halevt (HAL events manager) is a daemon that executes arbitrary commands when a -device with certain properties is added to the system and when device properties -change. Halevt uses HAL to monitor the state of your system's hardware. The -design of Halevt is heavily based on ivman. - -Halevt can also report all the hal events that are emitted by hald -(with the -i option on the command line). Halevt comes with halevt-mount: -a program able to use HAL to mount, umount devices, and keep a list of -devices handled by halevt-mount. - -Some of the examples require gtkdialog or Xdialog (both of which are in the -SlackBuilds.org repo) or alltray (not in SlackBuilds.org repo). - -This requires boolstuff. diff --git a/system/halevt/halevt.SlackBuild b/system/halevt/halevt.SlackBuild deleted file mode 100644 index d887ceb73e..0000000000 --- a/system/halevt/halevt.SlackBuild +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh - -# Slackware build script for halevt - -# Written by Dave Margell (dmargell@gmail.com) - -PRGNAM=halevt -VERSION=${VERSION:-0.1.6.2} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) 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 . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --infodir=/usr/info \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG | xargs 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 {} \; - -rm -f $PKG/usr/info/dir -gzip -9 $PKG/usr/info/*.info* - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/examples -cp -a AUTHORS ChangeLog COPYING INSTALL NEWS README TODO \ - $PKG/usr/doc/$PRGNAM-$VERSION -cp -a examples/{*.xml,*.sh} $PKG/usr/doc/$PRGNAM-$VERSION/examples -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/halevt/halevt.info b/system/halevt/halevt.info deleted file mode 100644 index 3c12990bf1..0000000000 --- a/system/halevt/halevt.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="halevt" -VERSION="0.1.6.2" -HOMEPAGE="http://www.nongnu.org/halevt/" -DOWNLOAD="http://savannah.nongnu.org/download/halevt/halevt-0.1.6.2.tar.gz" -MD5SUM="e5e81ba1ffa9f2230bf80f8b3da4f166" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Dave Margell" -EMAIL="dmargell@gmail.com" -APPROVED="rworkman" diff --git a/system/halevt/slack-desc b/system/halevt/slack-desc deleted file mode 100644 index e674c92fa5..0000000000 --- a/system/halevt/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 ':'. - - |-----handy-ruler------------------------------------------------------| -halevt: Halevt (HAL events manager) -halevt: -halevt: Halevt is a daemon that executes arbitrary commands when a device -halevt: with certain properties is added to the system and when device -halevt: properties change. -halevt: Halevt uses HAL to monitor the state of your system's hardware. -halevt: -halevt: Halevt design is heavily based on ivman. -halevt: -halevt: Project homepage: http://www.nongnu.org/halevt/ -halevt: |