diff --git a/libcap/.footprint b/libcap/.footprint new file mode 100644 index 000000000..89581c128 --- /dev/null +++ b/libcap/.footprint @@ -0,0 +1,32 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/sys/ +-rw-r--r-- root/root usr/include/sys/capability.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libcap.so -> libcap.so.1 +lrwxrwxrwx root/root usr/lib/libcap.so.1 -> libcap.so.1.10 +-rw-r--r-- root/root usr/lib/libcap.so.1.10 +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man2/ +drwxr-xr-x root/root usr/man/man3/ +-rw-r--r-- root/root usr/man/man3/_cap_names.3.gz +-rw-r--r-- root/root usr/man/man3/cap_clear.3.gz +-rw-r--r-- root/root usr/man/man3/cap_copy_ext.3.gz +-rw-r--r-- root/root usr/man/man3/cap_copy_int.3.gz +-rw-r--r-- root/root usr/man/man3/cap_dup.3.gz +-rw-r--r-- root/root usr/man/man3/cap_free.3.gz +-rw-r--r-- root/root usr/man/man3/cap_from_text.3.gz +-rw-r--r-- root/root usr/man/man3/cap_get_flag.3.gz +-rw-r--r-- root/root usr/man/man3/cap_get_proc.3.gz +-rw-r--r-- root/root usr/man/man3/cap_init.3.gz +-rw-r--r-- root/root usr/man/man3/cap_set_flag.3.gz +-rw-r--r-- root/root usr/man/man3/cap_set_proc.3.gz +-rw-r--r-- root/root usr/man/man3/cap_size.3.gz +-rw-r--r-- root/root usr/man/man3/cap_to_text.3.gz +-rw-r--r-- root/root usr/man/man3/capgetp.3.gz +-rw-r--r-- root/root usr/man/man3/capsetp.3.gz +drwxr-xr-x root/root usr/sbin/ +-rwxr-xr-x root/root usr/sbin/execcap +-rwxr-xr-x root/root usr/sbin/getpcaps +-rwxr-xr-x root/root usr/sbin/setpcaps +-rwxr-xr-x root/root usr/sbin/sucap diff --git a/libcap/.md5sum b/libcap/.md5sum new file mode 100644 index 000000000..60ee64dbc --- /dev/null +++ b/libcap/.md5sum @@ -0,0 +1 @@ +2c09eea823f67cfdde96177a959bc39b libcap-1.10.tar.gz diff --git a/libcap/Pkgfile b/libcap/Pkgfile new file mode 100644 index 000000000..a534d31ee --- /dev/null +++ b/libcap/Pkgfile @@ -0,0 +1,23 @@ +# $Id: Pkgfile,v 1.1 2006/09/07 11:44:29 aon Exp $ +# Description: POSIX.1e capabilities library +# URL: http://linux.kernel.org/pub/linux/libs/security/linux-privs/ +# Maintainer: Antti Nykänen, aon at iki dot fi +# Depends on: + +name=libcap +version=1.10 +release=1 +source=(ftp://ftp.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.4/libcap-$version.tar.gz) + +build () { + cd libcap-$version + make + make \ + INCDIR=$PKG/usr/include \ + LIBDIR=$PKG/usr/lib \ + SBINDIR=$PKG/usr/sbin \ + MANDIR=$PKG/usr/man install + + # these conflict with core/man-pages + rm $PKG/usr/man/man2/cap{get,set}.2 +}