CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libcap: initial import
authorVictor Martinez <pitillo@ono.com>
Tue, 10 Sep 2013 17:21:10 +0000 (17:21 +0000)
committerVictor Martinez <pitillo@ono.com>
Tue, 10 Sep 2013 17:21:10 +0000 (17:21 +0000)
libcap/.footprint [new file with mode: 0644]
libcap/.md5sum [new file with mode: 0644]
libcap/Pkgfile [new file with mode: 0644]

diff --git a/libcap/.footprint b/libcap/.footprint
new file mode 100644 (file)
index 0000000..7fed3d6
--- /dev/null
@@ -0,0 +1,49 @@
+drwxr-xr-x     root/root       lib/
+lrwxrwxrwx     root/root       lib/libcap.so.2 -> libcap.so.2.22
+-rw-r--r--     root/root       lib/libcap.so.2.22
+drwxr-xr-x     root/root       sbin/
+-rwxr-xr-x     root/root       sbin/capsh
+-rwxr-xr-x     root/root       sbin/getcap
+-rwxr-xr-x     root/root       sbin/getpcaps
+-rwxr-xr-x     root/root       sbin/setcap
+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/
+-rw-r--r--     root/root       usr/lib/libcap.a
+lrwxrwxrwx     root/root       usr/lib/libcap.so -> ../../lib/libcap.so.2.22
+drwxr-xr-x     root/root       usr/man/
+drwxr-xr-x     root/root       usr/man/man1/
+-rw-r--r--     root/root       usr/man/man1/capsh.1.gz
+drwxr-xr-x     root/root       usr/man/man3/
+-rw-r--r--     root/root       usr/man/man3/cap_clear.3.gz
+-rw-r--r--     root/root       usr/man/man3/cap_clear_flag.3.gz
+-rw-r--r--     root/root       usr/man/man3/cap_compare.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_drop_bound.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_name.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_bound.3.gz
+-rw-r--r--     root/root       usr/man/man3/cap_get_fd.3.gz
+-rw-r--r--     root/root       usr/man/man3/cap_get_file.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_pid.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_fd.3.gz
+-rw-r--r--     root/root       usr/man/man3/cap_set_file.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_name.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
+-rw-r--r--     root/root       usr/man/man3/libcap.3.gz
+drwxr-xr-x     root/root       usr/man/man8/
+-rw-r--r--     root/root       usr/man/man8/getcap.8.gz
+-rw-r--r--     root/root       usr/man/man8/setcap.8.gz
diff --git a/libcap/.md5sum b/libcap/.md5sum
new file mode 100644 (file)
index 0000000..5bd38b6
--- /dev/null
@@ -0,0 +1 @@
+ce64058bdb3f086ddbfca8ce6c919845  libcap-2.22.tar.bz2
diff --git a/libcap/Pkgfile b/libcap/Pkgfile
new file mode 100644 (file)
index 0000000..ac9a266
--- /dev/null
@@ -0,0 +1,23 @@
+# Description: POSIX.1e capabilities library
+# URL:         http://sites.google.com/site/fullycapable/
+# Maintainer:  CRUX System Team, core-ports at crux dot nu
+# Depends on:  attr
+
+name=libcap
+version=2.22
+release=1
+source=(http://crux.s3.amazonaws.com/dist/libcap-$version.tar.bz2)
+
+build () {
+  cd libcap-$version
+
+  sed -i "/^CFLAGS/s/-O2/$CFLAGS/" Make.Rules 
+
+  make CC="$CC" BUILD_CC="gcc" BUILD_CFLAGS="-O2 -pipe"
+  make RAISE_SETFCAP=no DESTDIR=$PKG man_prefix=/usr install
+
+  install -d $PKG/usr/lib
+  mv $PKG/lib/libcap.a $PKG/usr/lib
+  rm $PKG/lib/libcap.so
+  ln -s ../../lib/libcap.so.$version $PKG/usr/lib/libcap.so
+}