summaryrefslogtreecommitdiffstats
path: root/libraries/boolstuff
diff options
context:
space:
mode:
author Erik Hanson <erik@slackbuilds.org>2012-08-06 19:34:35 -0500
committer Robby Workman <rworkman@slackbuilds.org>2012-08-14 22:30:17 -0500
commit896e0cb627c853d11c0cf6f1328e1b16dde03951 (patch)
treef53930c74d26770b84ec9948e104010792e7fff9 /libraries/boolstuff
parent7d1f2378c90bfcd04e379e219423d44992bea216 (diff)
downloadslackbuilds-896e0cb627c853d11c0cf6f1328e1b16dde03951.tar.gz
slackbuilds-896e0cb627c853d11c0cf6f1328e1b16dde03951.tar.xz
libraries/boolstuff: Removed, dep for halevt (also removed)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'libraries/boolstuff')
-rw-r--r--libraries/boolstuff/README9
-rw-r--r--libraries/boolstuff/boolstuff.SlackBuild82
-rw-r--r--libraries/boolstuff/boolstuff.info10
-rw-r--r--libraries/boolstuff/slack-desc19
4 files changed, 0 insertions, 120 deletions
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: