diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2013-10-15 22:56:58 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-10-29 23:31:45 -0500 |
commit | d36d80e88184f351757be60e43cb4dcdee9a1787 (patch) | |
tree | 38a495842f3279d38f29c030c135eb281a9bc59e /libraries | |
parent | 48edb4f562af37f7585538e783dbb5b8d8eac629 (diff) |
libraries/libmnl: Removed (included in Slackware 14.1)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/libmnl/README | 5 | ||||
-rw-r--r-- | libraries/libmnl/libmnl.SlackBuild | 76 | ||||
-rw-r--r-- | libraries/libmnl/libmnl.info | 10 | ||||
-rw-r--r-- | libraries/libmnl/slack-desc | 19 |
4 files changed, 0 insertions, 110 deletions
diff --git a/libraries/libmnl/README b/libraries/libmnl/README deleted file mode 100644 index 587139d538a4..000000000000 --- a/libraries/libmnl/README +++ /dev/null @@ -1,5 +0,0 @@ -libmnl is a minimalistic user-space library oriented to Netlink -developers. There are a lot of common tasks in parsing, validating, -constructing of both the Netlink header and TLVs that are repetitive -and easy to get wrong. This library aims to provide simple helpers -that allow you to re-use code and to avoid re-inventing the wheel. diff --git a/libraries/libmnl/libmnl.SlackBuild b/libraries/libmnl/libmnl.SlackBuild deleted file mode 100644 index 111fa6193d91..000000000000 --- a/libraries/libmnl/libmnl.SlackBuild +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh - -# Slackware build script for libmnl -# Written by Michal Bialozor <bialyy@o2.pl> - -PRGNAM=libmnl -VERSION=${VERSION:-1.0.3} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) 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.bz2 -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} \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --enable-static=no \ - --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 - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING 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.${PKGTYPE:-tgz} diff --git a/libraries/libmnl/libmnl.info b/libraries/libmnl/libmnl.info deleted file mode 100644 index 4b050a46222a..000000000000 --- a/libraries/libmnl/libmnl.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="libmnl" -VERSION="1.0.3" -HOMEPAGE="http://www.netfilter.org/projects/libmnl/" -DOWNLOAD="http://www.netfilter.org/projects/libmnl/files/libmnl-1.0.3.tar.bz2" -MD5SUM="7d95fc3bea3365bc03c48e484224f65f" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Michal Bialozor" -EMAIL="bialyy@o2.pl" diff --git a/libraries/libmnl/slack-desc b/libraries/libmnl/slack-desc deleted file mode 100644 index 017c87d52f9b..000000000000 --- a/libraries/libmnl/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------------------------------------------------------| -libmnl: libmnl (user-space library oriented to Netlink developers) -libmnl: -libmnl: libmnl is a minimalistic user-space library oriented to Netlink -libmnl: developers. There are a lot of common tasks in parsing, validating, -libmnl: constructing of both the Netlink header and TLVs that are repetitive -libmnl: and easy to get wrong. This library aims to provide simple helpers -libmnl: that allows you to re-use code and to avoid re-inventing the wheel. -libmnl: -libmnl: Homepage: http://www.netfilter.org/projects/libmnl/ -libmnl: -libmnl: |