From 896e0cb627c853d11c0cf6f1328e1b16dde03951 Mon Sep 17 00:00:00 2001 From: Erik Hanson Date: Mon, 6 Aug 2012 19:34:35 -0500 Subject: libraries/boolstuff: Removed, dep for halevt (also removed) Signed-off-by: Erik Hanson --- libraries/boolstuff/README | 9 ---- libraries/boolstuff/boolstuff.SlackBuild | 82 -------------------------------- libraries/boolstuff/boolstuff.info | 10 ---- libraries/boolstuff/slack-desc | 19 -------- 4 files changed, 120 deletions(-) delete mode 100644 libraries/boolstuff/README delete mode 100644 libraries/boolstuff/boolstuff.SlackBuild delete mode 100644 libraries/boolstuff/boolstuff.info delete mode 100644 libraries/boolstuff/slack-desc diff --git a/libraries/boolstuff/README b/libraries/boolstuff/README deleted file mode 100644 index ab4313d54f..0000000000 --- a/libraries/boolstuff/README +++ /dev/null @@ -1,9 +0,0 @@ -BoolStuff is a small C++ library that supports a few operations on -boolean expression binary trees. The main features are: - - a boolean expression parser (supports operators AND, OR - and NOT, as well as parentheses); - - an algorithm to convert a boolean expression binary tree - into its Disjunctive Normal Form; - - a function that determines if an expression tree is in DNF. - -A command named `booldnf' that calls this library is also provided. diff --git a/libraries/boolstuff/boolstuff.SlackBuild b/libraries/boolstuff/boolstuff.SlackBuild deleted file mode 100644 index 3ba7f2695c..0000000000 --- a/libraries/boolstuff/boolstuff.SlackBuild +++ /dev/null @@ -1,82 +0,0 @@ -#!/bin/sh - -# Slackware build script for boolstuff - -# Written by Dave Margell (dmargell@gmail.com) - -PRGNAM=boolstuff -VERSION=${VERSION:-0.1.13} -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" \ -LDFLAGS="-L/usr/lib${LIBDIRSUFFIX}" \ -./configure \ - --prefix=/usr \ - --datarootdir=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --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 {} \; - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/examples -cp -a examples/{example.cpp,non-string-nodes.cpp,test-booldnf.pl} \ - $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/libraries/boolstuff/boolstuff.info b/libraries/boolstuff/boolstuff.info deleted file mode 100644 index e4b5cb2554..0000000000 --- a/libraries/boolstuff/boolstuff.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="boolstuff" -VERSION="0.1.13" -HOMEPAGE="http://perso.b2b2c.ca/sarrazip/dev/boolstuff.html" -DOWNLOAD="http://perso.b2b2c.ca/sarrazip/dev/boolstuff-0.1.13.tar.gz" -MD5SUM="084a834f8b4c59f690f1dcf2f385d404" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Dave Margell" -EMAIL="dmargell@gmail.com" -APPROVED="Erik Hanson" diff --git a/libraries/boolstuff/slack-desc b/libraries/boolstuff/slack-desc deleted file mode 100644 index 67a7da86c9..0000000000 --- a/libraries/boolstuff/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------------------------------------------------------| -boolstuff: boolstuff (library to perform operations on boolean expressions) -boolstuff: -boolstuff: boolstuff is a C++ library that supports a few operations on boolean -boolstuff: expression binary trees. The main features are: -boolstuff: * a simple boolean expression parser -boolstuff: (supports operators AND, OR and NOT, as well as parentheses); -boolstuff: * an algorithm to convert a boolean expression binary tree into its -boolstuff: Disjunctive Normal Form (this algorithm supports the NOT operator); -boolstuff: * a function that determines if an expression tree is in DNF. -boolstuff: Project homepage: http://perso.b2b2c.ca/sarrazip/dev/boolstuff.html -boolstuff: -- cgit v1.2.3