summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Robby Workman2011-03-31 06:27:39 +0200
committer Robby Workman2011-03-31 06:27:58 +0200
commit326412747379aac1efd4c498567a30c2ff7da738 (patch)
tree538e281b509ce1e8b2144c00d450c762b4c4b5a9 /system
parentd94352b36927a2f6cdc53abf04526d671ee79668 (diff)
downloadslackbuilds-326412747379aac1efd4c498567a30c2ff7da738.tar.gz
system/chkconfig: Removed (abandoned by maintainer and build failure)
I was going to take over maintenance of this one, but it fails to build with make-3.82, and it's not a "typical" (easily fixable) error caused by new make, so I'm not going to bother with it Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/chkconfig/README18
-rw-r--r--system/chkconfig/chkconfig.SlackBuild89
-rw-r--r--system/chkconfig/chkconfig.info10
-rw-r--r--system/chkconfig/slack-desc19
4 files changed, 0 insertions, 136 deletions
diff --git a/system/chkconfig/README b/system/chkconfig/README
deleted file mode 100644
index d32f5f51fb..0000000000
--- a/system/chkconfig/README
+++ /dev/null
@@ -1,18 +0,0 @@
-Chkconfig is a tool for managing the collection of symbolic links found in
-the /etc/rc[0-6].d directories, on System V derived UNIX systems. It saves
-the system administrator from the tedium of manually managing the scores of
-symbolic links.
-
-Once you've compiled it, chkconfig requires special headers at the top
-of the init scripts in order to know how to setup the symlinks. This is
-This is documented in the manpage for chkconfig under RUNLEVEL FILES.
-
-After which services can be administrated in the folowing manner:
-
- chkconfig --add <service>
- chkconfig --level 2345 <service> on
- chkconfig --list <service>
-
-Note: Slackware uses a BSD UNIX derived 'rc' system to be found in
- /etc/rc.d (utilising 'pkgtool' for management), SysV-style init
- is however supported for 3th party programs to use.
diff --git a/system/chkconfig/chkconfig.SlackBuild b/system/chkconfig/chkconfig.SlackBuild
deleted file mode 100644
index 5b35a14525..0000000000
--- a/system/chkconfig/chkconfig.SlackBuild
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for Chkconfig
-
-# Written by Menno Duursma <druiloor@zonnet.nl>
-
-# This program is free software. It comes without any warranty.
-# Granted WTFPL, Version 2, as published by Sam Hocevar. See
-# http://sam.zoy.org/wtfpl/COPYING for more details.
-
-PRGNAM=chkconfig
-VERSION=${VERSION:-1.3.30c}
-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 # Exit on most errors
-
-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 \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --build=$ARCH-slackware-linux
-
-make
-make install-strip DESTDIR=$PKG
-
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $( find . -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 TODO \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README$TAG
-
-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/chkconfig/chkconfig.info b/system/chkconfig/chkconfig.info
deleted file mode 100644
index 942d4f01f1..0000000000
--- a/system/chkconfig/chkconfig.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="chkconfig"
-VERSION="1.3.30c"
-HOMEPAGE="http://www.fastcoder.net/software/chkconfig/"
-DOWNLOAD="http://www.sfr-fresh.com/unix/privat/chkconfig-1.3.30c.tar.gz"
-MD5SUM="592a1fe77f3844d7748adbab6357ee25"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Menno Duursma"
-EMAIL="druiloor@zonnet.nl"
-APPROVED="rworkman"
diff --git a/system/chkconfig/slack-desc b/system/chkconfig/slack-desc
deleted file mode 100644
index 6e7d847d82..0000000000
--- a/system/chkconfig/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----------------------------------------------------|
-chkconfig: Chkconfig (a tool for managing SysV init directories)
-chkconfig:
-chkconfig: Chkconfig is a tool for managing the collection of symbolic links
-chkconfig: found in the /etc/rc[0-6].d directories, on System V derived UNIX
-chkconfig: systems. It saves the system administrator from the tedium of
-chkconfig: manually managing the scores of symbolic links.
-chkconfig:
-chkconfig: Note: Slackware uses a BSD UNIX derived 'rc' system to be found in
-chkconfig: /etc/rc.d (utilising 'pkgtool' for management), SysV-style init
-chkconfig: is however supported for 3th party programs to use.
-chkconfig: