diff options
author | Lukc <lukc@upyum.com> | 2010-12-11 19:15:23 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-11 19:15:35 +0100 |
commit | 6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch) | |
tree | b5e6da6d95b9a1235d82032b509b80483a886ff5 /attr | |
download | base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2 base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip |
Engagement initial.
Diffstat (limited to 'attr')
-rw-r--r-- | attr/.footprint | 36 | ||||
-rw-r--r-- | attr/.md5sum | 1 | ||||
-rw-r--r-- | attr/Pkgfile | 25 | ||||
-rw-r--r-- | attr/Pkgfile.old | 32 |
4 files changed, 94 insertions, 0 deletions
diff --git a/attr/.footprint b/attr/.footprint new file mode 100644 index 0000000..0488d17 --- /dev/null +++ b/attr/.footprint @@ -0,0 +1,36 @@ +drwxr-xr-x root/root bin/ +-rwxr-xr-x root/root bin/attr +-rwxr-xr-x root/root bin/getfattr +-rwxr-xr-x root/root bin/setfattr +drwxr-xr-x root/root lib/ +lrwxrwxrwx root/root lib/libattr.so.1 -> libattr.so.1.1.0 +-rw-r--r-- root/root lib/libattr.so.1.1.0 +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/attr/ +-rw-r--r-- root/root usr/include/attr/attributes.h +-rw-r--r-- root/root usr/include/attr/error_context.h +-rw-r--r-- root/root usr/include/attr/libattr.h +-rw-r--r-- root/root usr/include/attr/xattr.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libattr.a +-rw-r--r-- root/root usr/lib/libattr.la +lrwxrwxrwx root/root usr/lib/libattr.so -> ../../lib/libattr.so.1.1.0 +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/attr.1.gz +-rw-r--r-- root/root usr/man/man1/getfattr.1.gz +-rw-r--r-- root/root usr/man/man1/setfattr.1.gz +drwxr-xr-x root/root usr/man/man3/ +-rw-r--r-- root/root usr/man/man3/attr_get.3.gz +lrwxrwxrwx root/root usr/man/man3/attr_getf.3.gz -> attr_get.3.gz +-rw-r--r-- root/root usr/man/man3/attr_list.3.gz +lrwxrwxrwx root/root usr/man/man3/attr_listf.3.gz -> attr_list.3.gz +-rw-r--r-- root/root usr/man/man3/attr_multi.3.gz +lrwxrwxrwx root/root usr/man/man3/attr_multif.3.gz -> attr_multi.3.gz +-rw-r--r-- root/root usr/man/man3/attr_remove.3.gz +lrwxrwxrwx root/root usr/man/man3/attr_removef.3.gz -> attr_remove.3.gz +-rw-r--r-- root/root usr/man/man3/attr_set.3.gz +lrwxrwxrwx root/root usr/man/man3/attr_setf.3.gz -> attr_set.3.gz +drwxr-xr-x root/root usr/man/man5/ +-rw-r--r-- root/root usr/man/man5/attr.5.gz diff --git a/attr/.md5sum b/attr/.md5sum new file mode 100644 index 0000000..bace823 --- /dev/null +++ b/attr/.md5sum @@ -0,0 +1 @@ +d132c119831c27350e10b9f885711adc attr-2.4.44.src.tar.gz diff --git a/attr/Pkgfile b/attr/Pkgfile new file mode 100644 index 0000000..ccde88a --- /dev/null +++ b/attr/Pkgfile @@ -0,0 +1,25 @@ +description="Extented attributes library" +packager="" +maintainer="CRUX System Team, core-ports at crux dot nu" +url="http://savannah.nongnu.org/projects/attr/" +depends=() + +name=attr +version=2.4.44 +release=1 +source=(http://mirrors.zerg.biz/nongnu/attr/attr-2.4.44.src.tar.gz) +build () +{ + cd $name-$version; + export DEBUG=-DNDEBUG; + export OPTIMIZER=$CFLAGS; + ./configure --prefix=/usr --bindir=/bin --libexecdir=/usr/lib --mandir=/usr/man; + make; + make DIST_ROOT=$PKG install install-lib install-dev; + install -d $PKG/lib; + mv $PKG/usr/lib/libattr.so.* $PKG/lib; + rm $PKG/usr/lib/libattr.so; + ln -s ../../lib/libattr.so.1.1.0 $PKG/usr/lib/libattr.so; + rm -r $PKG/usr/man/man2; + rm -r $PKG/usr/share +} diff --git a/attr/Pkgfile.old b/attr/Pkgfile.old new file mode 100644 index 0000000..9620db5 --- /dev/null +++ b/attr/Pkgfile.old @@ -0,0 +1,32 @@ +# Description: Extented attributes library +# URL: http://savannah.nongnu.org/projects/attr/ +# Maintainer: CRUX System Team, core-ports at crux dot nu + +name=attr +version=2.4.44 +release=1 +source=(http://mirrors.zerg.biz/nongnu/$name/$name-$version.src.tar.gz) + +build() { + cd $name-$version + + export DEBUG=-DNDEBUG + export OPTIMIZER=$CFLAGS + + ./configure --prefix=/usr \ + --bindir=/bin \ + --libexecdir=/usr/lib \ + --mandir=/usr/man + make + make DIST_ROOT=$PKG install install-lib install-dev + + install -d $PKG/lib + mv $PKG/usr/lib/libattr.so.* $PKG/lib + rm $PKG/usr/lib/libattr.so + ln -s ../../lib/libattr.so.1.1.0 $PKG/usr/lib/libattr.so + + # category 2 manuals are included in core/man-pages + rm -r $PKG/usr/man/man2 + + rm -r $PKG/usr/share +} |