summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-11 20:30:39 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-11 20:30:39 +0200
commitd8a128c0558d5bc3795194315c6e885981bf1d10 (patch)
treeae2fdd0cb345e01b0e054079beaa66f36300bece
parent31e82e4cbc9e19ff2c261fb42744cc1d498574dc (diff)
downloadslackbuilds-d8a128c0558d5bc3795194315c6e885981bf1d10.tar.gz
slackbuilds-d8a128c0558d5bc3795194315c6e885981bf1d10.tar.xz
libraries/libconfuse: Removed from 12.1 repository
-rw-r--r--libraries/libconfuse/README11
-rw-r--r--libraries/libconfuse/libconfuse.SlackBuild61
-rw-r--r--libraries/libconfuse/libconfuse.info8
-rw-r--r--libraries/libconfuse/slack-desc19
4 files changed, 0 insertions, 99 deletions
diff --git a/libraries/libconfuse/README b/libraries/libconfuse/README
deleted file mode 100644
index e90d8884d9..0000000000
--- a/libraries/libconfuse/README
+++ /dev/null
@@ -1,11 +0,0 @@
-libConfuse is a configuration file parser library, licensed under the terms of
-the LGPL, and written in C. It supports sections and (lists of) values
-(strings, integers, floats, booleans or other sections), as well as some other
-features (such as single/double-quoted strings, environment variable expansion,
-functions and nested include statements). It makes it very easy to add
-configuration file capability to a program using a simple API.
-
-The goal of libConfuse is not to be the configuration file parser library with
-a gazillion of features. Instead, it aims to be easy to use and quick to
-integrate with your code. libConfuse was called libcfg before, but was changed
-to not confuse with other similar libraries.
diff --git a/libraries/libconfuse/libconfuse.SlackBuild b/libraries/libconfuse/libconfuse.SlackBuild
deleted file mode 100644
index 80e5e07f00..0000000000
--- a/libraries/libconfuse/libconfuse.SlackBuild
+++ /dev/null
@@ -1,61 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for libConfuse
-# Written by Erik Hanson erik@slackbuilds.org
-# Modified by the SlackBuilds.org project
-
-PRGNAM=libconfuse
-SRCNAM=confuse
-VERSION=2.5
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-fi
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP || exit 1
-rm -rf $SRCNAM-$VERSION
-tar xvf $CWD/$SRCNAM-$VERSION.tar.gz || exit 1
-cd $SRCNAM-$VERSION || exit 1
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-CFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --enable-shared=yes \
- --enable-static=no \
- || exit 1
-
-make || exit 1
-make install-strip DESTDIR=$PKG || exit 1
-
-find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
-
-mkdir -p $PKG/usr/man/man3
-cp -a doc/man/man3/* $PKG/usr/man/man3/
-gzip -9 $PKG/usr/man/man3/*
-
-rmdir $PKG/usr/bin
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a ABOUT-NLS AUTHORS COPYING 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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
diff --git a/libraries/libconfuse/libconfuse.info b/libraries/libconfuse/libconfuse.info
deleted file mode 100644
index 1694b3bc3f..0000000000
--- a/libraries/libconfuse/libconfuse.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="libconfuse"
-VERSION="2.5"
-HOMEPAGE="http://www.nongnu.org/confuse/"
-DOWNLOAD="http://download.savannah.gnu.org/releases/confuse/confuse-2.5.tar.gz"
-MD5SUM="4bc9b73d77ebd571ac834619ce0b3582"
-MAINTAINER="Erik Hanson"
-EMAIL="erik@slackbuilds.org"
-APPROVED="elohim,rworkman"
diff --git a/libraries/libconfuse/slack-desc b/libraries/libconfuse/slack-desc
deleted file mode 100644
index 8ec66a2736..0000000000
--- a/libraries/libconfuse/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------------------------------------------------------|
-libconfuse: libConfuse (configuration file parser library)
-libconfuse:
-libconfuse: libConfuse is a configuration file parser library, It supports
-libconfuse: sections and (lists of) values (strings, integers, floats,
-libconfuse: booleans or other sections), as well as some other features
-libconfuse: (such as single/double-quoted strings, environment variable
-libconfuse: expansion, functions and nested include statements).
-libconfuse:
-libconfuse: http://www.nongnu.org/confuse/
-libconfuse:
-libconfuse: