From 6d908a38e05b9d4135c65d23114a5874215b5bb8 Mon Sep 17 00:00:00 2001 From: Lukc Date: Sat, 11 Dec 2010 19:15:23 +0100 Subject: Engagement initial. --- libarchive/.footprint | 33 +++++++++++++++++++++++++++++++++ libarchive/.md5sum | 1 + libarchive/Pkgfile | 17 +++++++++++++++++ libarchive/Pkgfile.old | 26 ++++++++++++++++++++++++++ 4 files changed, 77 insertions(+) create mode 100644 libarchive/.footprint create mode 100644 libarchive/.md5sum create mode 100644 libarchive/Pkgfile create mode 100644 libarchive/Pkgfile.old (limited to 'libarchive') diff --git a/libarchive/.footprint b/libarchive/.footprint new file mode 100644 index 0000000..64446c1 --- /dev/null +++ b/libarchive/.footprint @@ -0,0 +1,33 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/bsdcpio +-rwxr-xr-x root/root usr/bin/bsdtar +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/archive.h +-rw-r--r-- root/root usr/include/archive_entry.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libarchive.a +-rwxr-xr-x root/root usr/lib/libarchive.la +lrwxrwxrwx root/root usr/lib/libarchive.so -> libarchive.so.2.8.4 +lrwxrwxrwx root/root usr/lib/libarchive.so.2 -> libarchive.so.2.8.4 +-rwxr-xr-x root/root usr/lib/libarchive.so.2.8.4 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libarchive.pc +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/bsdcpio.1.gz +-rw-r--r-- root/root usr/man/man1/bsdtar.1.gz +drwxr-xr-x root/root usr/man/man3/ +-rw-r--r-- root/root usr/man/man3/archive_entry.3.gz +-rw-r--r-- root/root usr/man/man3/archive_read.3.gz +-rw-r--r-- root/root usr/man/man3/archive_read_disk.3.gz +-rw-r--r-- root/root usr/man/man3/archive_util.3.gz +-rw-r--r-- root/root usr/man/man3/archive_write.3.gz +-rw-r--r-- root/root usr/man/man3/archive_write_disk.3.gz +-rw-r--r-- root/root usr/man/man3/libarchive.3.gz +-rw-r--r-- root/root usr/man/man3/libarchive_internals.3.gz +drwxr-xr-x root/root usr/man/man5/ +-rw-r--r-- root/root usr/man/man5/cpio.5.gz +-rw-r--r-- root/root usr/man/man5/libarchive-formats.5.gz +-rw-r--r-- root/root usr/man/man5/mtree.5.gz +-rw-r--r-- root/root usr/man/man5/tar.5.gz diff --git a/libarchive/.md5sum b/libarchive/.md5sum new file mode 100644 index 0000000..7dabc48 --- /dev/null +++ b/libarchive/.md5sum @@ -0,0 +1 @@ +83b237a542f27969a8d68ac217dc3796 libarchive-2.8.4.tar.gz diff --git a/libarchive/Pkgfile b/libarchive/Pkgfile new file mode 100644 index 0000000..cdde830 --- /dev/null +++ b/libarchive/Pkgfile @@ -0,0 +1,17 @@ +description="Library to create and read several archive formats" +packager="" +maintainer="CRUX System Team, core-ports at crux dot nu" +url="http://people.freebsd.org/~kientzle/libarchive/" +depends=(bzip2 xz zlib acl) + +name=libarchive +version=2.8.4 +release=1 +source=(http://libarchive.googlecode.com/files/libarchive-2.8.4.tar.gz) +build () +{ + cd libarchive-$version; + ./configure --prefix=/usr --mandir=/usr/man --without-lzmadec --without-xml2 --without-expat --without-openssl; + make; + make DESTDIR=$PKG install +} diff --git a/libarchive/Pkgfile.old b/libarchive/Pkgfile.old new file mode 100644 index 0000000..9d94567 --- /dev/null +++ b/libarchive/Pkgfile.old @@ -0,0 +1,26 @@ +# Description: Library to create and read several archive formats +# URL: http://people.freebsd.org/~kientzle/libarchive/ +# Maintainer: CRUX System Team, core-ports at crux dot nu +# Depends on: bzip2, xz, zlib, acl + +name=libarchive +version=2.8.4 +release=1 +source=(http://$name.googlecode.com/files/$name-$version.tar.gz) + +build() { + cd libarchive-$version + + # We're passing --without-lzmadec, because we want to use xz for + # LZMA support, not the obsolete lzmadec library. + # + # We're passing --without-xml2 and --without-expat to avoid linking + # to libraries which are only available in opt. XML support is only + # needed for the xar format which we can live without. + ./configure --prefix=/usr --mandir=/usr/man \ + --without-lzmadec \ + --without-xml2 --without-expat --without-openssl + + make + make DESTDIR=$PKG install +} -- cgit v1.2.3-54-g00ecf