mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
libraries/libcap-ng: Added to 13.0 repository
This commit is contained in:
parent
1f75a04e5f
commit
9d8c5b968e
4 changed files with 125 additions and 0 deletions
9
libraries/libcap-ng/README
Normal file
9
libraries/libcap-ng/README
Normal file
|
@ -0,0 +1,9 @@
|
|||
The libcap-ng library is intended to make programming with posix
|
||||
capabilities much easier than the traditional libcap library. It includes
|
||||
utilities that can analyse all currently running applications and print
|
||||
out any capabilities and whether or not it has an open ended bounding set.
|
||||
|
||||
The included utilities are designed to let admins and developers spot apps
|
||||
from various ways that may be running with too much privilege.
|
||||
|
||||
As of the 0.6 release, you can use libcap-ng in python.
|
87
libraries/libcap-ng/libcap-ng.SlackBuild
Normal file
87
libraries/libcap-ng/libcap-ng.SlackBuild
Normal file
|
@ -0,0 +1,87 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for libcap-ng
|
||||
# Written by Menno Duursma <druiloor@zonnet.nl>
|
||||
|
||||
# This program is free software. It comes without any warranty.
|
||||
# Granted WTFPL, Version 2, as published by Sam Hocevar. See
|
||||
# http://sam.zoy.org/wtfpl/COPYING for more details.
|
||||
|
||||
PRGNAM=libcap-ng
|
||||
VERSION=${VERSION:-0.6.2}
|
||||
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"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e # Exit on most errors
|
||||
|
||||
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" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
|
||||
# This target only works if our kernel-headers match the kernel.
|
||||
#make check
|
||||
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
# Remove a couple things so they don't get picked up
|
||||
rm -vf $PKG//usr/lib${LIBDIRSUFFIX}/libcap-ng.la
|
||||
rm -vf $PKG//usr/lib${LIBDIRSUFFIX}/libcap-ng.a
|
||||
rm -vf $PKG//usr/lib${LIBDIRSUFFIX}/python?.?/site-packages/_capng.a
|
||||
rm -vf $PKG//usr/lib${LIBDIRSUFFIX}/python?.?/site-packages/_capng.la
|
||||
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING.LIB INSTALL README COPYING ChangeLog NEWS \
|
||||
$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
|
||||
|
10
libraries/libcap-ng/libcap-ng.info
Normal file
10
libraries/libcap-ng/libcap-ng.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="libcap-ng"
|
||||
VERSION="0.6.2"
|
||||
HOMEPAGE="http://people.redhat.com/sgrubb/libcap-ng/"
|
||||
DOWNLOAD="http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-0.6.2.tar.gz"
|
||||
MD5SUM="f9af01f4ec602506da717632b94354fd"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Menno Duursma"
|
||||
EMAIL="druiloor@zonnet.nl"
|
||||
APPROVED="Erik Hanson"
|
19
libraries/libcap-ng/slack-desc
Normal file
19
libraries/libcap-ng/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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---------------------------------------------------|
|
||||
libcap-ng: libcap-ng (capabilities library and utilities)
|
||||
libcap-ng:
|
||||
libcap-ng: The libcap-ng library is intended to make programming with posix
|
||||
libcap-ng: capabilities easier. The library has some utilities to help you
|
||||
libcap-ng: analyse a system for apps that may have too much privileges.
|
||||
libcap-ng:
|
||||
libcap-ng: libcap-ng was written and is maintained by Steve Grubb
|
||||
libcap-ng:
|
||||
libcap-ng:
|
||||
libcap-ng:
|
||||
libcap-ng:
|
Loading…
Reference in a new issue