diff options
author | Juergen Daubert <jue@jue.li> | 2011-07-07 16:56:21 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2011-07-07 16:56:21 +0200 |
commit | 1a935a10295b21f4604d14fcff1b9167bbd1cf3a (patch) | |
tree | 56a995032b345523299034c30a6571e6441df75a /keyutils | |
parent | 7cce791b33360a1fb2927b24829297581390f121 (diff) | |
download | opt-1a935a10295b21f4604d14fcff1b9167bbd1cf3a.tar.gz opt-1a935a10295b21f4604d14fcff1b9167bbd1cf3a.tar.xz |
keyutils: initial release
Diffstat (limited to 'keyutils')
-rw-r--r-- | keyutils/.footprint | 45 | ||||
-rw-r--r-- | keyutils/.md5sum | 1 | ||||
-rw-r--r-- | keyutils/Pkgfile | 15 |
3 files changed, 61 insertions, 0 deletions
diff --git a/keyutils/.footprint b/keyutils/.footprint new file mode 100644 index 000000000..1c46a7b12 --- /dev/null +++ b/keyutils/.footprint @@ -0,0 +1,45 @@ +drwxr-xr-x root/root bin/ +-rwxr-xr-x root/root bin/keyctl +drwxr-xr-x root/root etc/ +-rw-r--r-- root/root etc/request-key.conf +drwxr-xr-x root/root lib/ +lrwxrwxrwx root/root lib/libkeyutils.so.1 -> libkeyutils.so.1.3 +-rwxr-xr-x root/root lib/libkeyutils.so.1.3 +drwxr-xr-x root/root sbin/ +-rwxr-xr-x root/root sbin/request-key +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/keyutils.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libkeyutils.a +lrwxrwxrwx root/root usr/lib/libkeyutils.so -> /lib/libkeyutils.so.1 +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/keyctl.1.gz +drwxr-xr-x root/root usr/man/man3/ +lrwxrwxrwx root/root usr/man/man3/keyctl_assume_authority.3.gz -> keyctl_instantiate.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_chown.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_clear.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_describe.3.gz +lrwxrwxrwx root/root usr/man/man3/keyctl_describe_alloc.3.gz -> keyctl_describe.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_get_keyring_ID.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_instantiate.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_join_session_keyring.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_link.3.gz +lrwxrwxrwx root/root usr/man/man3/keyctl_negate.3.gz -> keyctl_instantiate.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_read.3.gz +lrwxrwxrwx root/root usr/man/man3/keyctl_read_alloc.3.gz -> keyctl_read.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_revoke.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_search.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_set_reqkey_keyring.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_set_timeout.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_setperm.3.gz +lrwxrwxrwx root/root usr/man/man3/keyctl_unlink.3.gz -> keyctl_link.3.gz +-rw-r--r-- root/root usr/man/man3/keyctl_update.3.gz +drwxr-xr-x root/root usr/man/man5/ +-rw-r--r-- root/root usr/man/man5/request-key.conf.5.gz +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/request-key.8.gz +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/keyutils/ +-rwxr-xr-x root/root usr/share/keyutils/request-key-debug.sh diff --git a/keyutils/.md5sum b/keyutils/.md5sum new file mode 100644 index 000000000..8a7c64893 --- /dev/null +++ b/keyutils/.md5sum @@ -0,0 +1 @@ +e168c1bdaf5aa93c2cbf8a5e7f8ef27b keyutils-1.4.tar.bz2 diff --git a/keyutils/Pkgfile b/keyutils/Pkgfile new file mode 100644 index 000000000..2f506435f --- /dev/null +++ b/keyutils/Pkgfile @@ -0,0 +1,15 @@ +# Description: Tools to control the Linx key management system +# URL: http://www.kernel.org/ +# Maintainer: Juergen Daubert, jue at crux dot nu + +name=keyutils +version=1.4 +release=1 +source=(http://people.redhat.com/~dhowells/$name/$name-$version.tar.bz2) + +build () { + cd $name-$version + sed -i "/^MAN[1-9]/s|share/||;/^CFLAGS/s/-O2/$CFLAGS/" Makefile + make -j1 + make DESTDIR=$PKG install +} |