summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author dsomero2012-09-30 01:22:03 +0200
committer Robby Workman2012-10-01 03:00:51 +0200
commite83d7bd4d242c0fc378da721cacf05625c72a7f2 (patch)
treed3bf4f63e1874aa9abb9b923a7a26dbe8e1d1cf4 /libraries
parent3b7dabbf1fbf989ce9479a71d48aeb7ae98366e3 (diff)
downloadslackbuilds-e83d7bd4d242c0fc378da721cacf05625c72a7f2.tar.gz
libraries/ffcall: Removed (Included in Slackware's clisp package)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r--libraries/ffcall/README2
-rw-r--r--libraries/ffcall/ffcall.SlackBuild99
-rw-r--r--libraries/ffcall/ffcall.info10
-rw-r--r--libraries/ffcall/slack-desc19
4 files changed, 0 insertions, 130 deletions
diff --git a/libraries/ffcall/README b/libraries/ffcall/README
deleted file mode 100644
index 19a2026927..0000000000
--- a/libraries/ffcall/README
+++ /dev/null
@@ -1,2 +0,0 @@
-ffcall is a collection of four libraries used to build foreign
-function call interfaces in embedded interpreters.
diff --git a/libraries/ffcall/ffcall.SlackBuild b/libraries/ffcall/ffcall.SlackBuild
deleted file mode 100644
index ea9dde7e91..0000000000
--- a/libraries/ffcall/ffcall.SlackBuild
+++ /dev/null
@@ -1,99 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for ffcall
-
-# Copyright 2006 Martin Lefebvre <dadexter@gmail.com>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-PRGNAM=ffcall
-VERSION=1.10
-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 .
-chmod -R u+w,go+r-w,a-s .
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --build=$ARCH-slackware-linux
-
-make
-make DESTDIR=$PKG install
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-gzip -9 $PKG/usr/man/man?/*
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-cp -a COPYING NEWS PLATFORMS README* \
- $PKG/usr/doc/$PRGNAM-$VERSION
-mv $PKG/usr/share/html $PKG/usr/doc/$PRGNAM-$VERSION/html
-rmdir $PKG/usr/share
-
-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/ffcall/ffcall.info b/libraries/ffcall/ffcall.info
deleted file mode 100644
index 6d82a63bac..0000000000
--- a/libraries/ffcall/ffcall.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="ffcall"
-VERSION="1.10"
-HOMEPAGE="http://www.haible.de/bruno/packages-ffcall.html"
-DOWNLOAD="http://www.haible.de/bruno/gnu/ffcall-1.10.tar.gz"
-MD5SUM="2db95007e901f3bc2ae7e5a9fe9ebea4"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Martin Lefebvre"
-EMAIL="dadexter@gmail.com"
diff --git a/libraries/ffcall/slack-desc b/libraries/ffcall/slack-desc
deleted file mode 100644
index d71a657d69..0000000000
--- a/libraries/ffcall/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------------------------------------------------------|
-ffcall: ffcall (Foreign Function Call library)
-ffcall:
-ffcall: A collection of four libraries used to build foreign function call
-ffcall: interfaces in embedded interpreters.
-ffcall:
-ffcall:
-ffcall:
-ffcall:
-ffcall:
-ffcall:
-ffcall: