diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-03-15 14:48:34 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-03-15 14:48:34 +0000 |
commit | 839c5d8a59c9cc0fa5a674f54560dcf2d18e6113 (patch) | |
tree | 7ec0b40e02697df6c709c957a7a15a98331538a2 /app-arch/libarchive/libarchive-2.4.14.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-839c5d8a59c9cc0fa5a674f54560dcf2d18e6113.tar.gz gentoo-2-839c5d8a59c9cc0fa5a674f54560dcf2d18e6113.tar.bz2 gentoo-2-839c5d8a59c9cc0fa5a674f54560dcf2d18e6113.zip |
Version bump.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-arch/libarchive/libarchive-2.4.14.ebuild')
-rw-r--r-- | app-arch/libarchive/libarchive-2.4.14.ebuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/app-arch/libarchive/libarchive-2.4.14.ebuild b/app-arch/libarchive/libarchive-2.4.14.ebuild new file mode 100644 index 000000000000..a13459d1cf54 --- /dev/null +++ b/app-arch/libarchive/libarchive-2.4.14.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/libarchive-2.4.14.ebuild,v 1.1 2008/03/15 14:48:34 flameeyes Exp $ + +inherit eutils libtool toolchain-funcs + +DESCRIPTION="BSD tar command" +HOMEPAGE="http://people.freebsd.org/~kientzle/libarchive" +SRC_URI="http://people.freebsd.org/~kientzle/libarchive/src/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="build static acl xattr kernel_linux" + +RDEPEND="!dev-libs/libarchive + kernel_linux? ( + acl? ( sys-apps/acl ) + xattr? ( sys-apps/attr ) + ) + !static? ( !build? ( + app-arch/bzip2 + sys-libs/zlib ) )" +DEPEND="${RDEPEND} + || ( app-arch/sharutils sys-freebsd/freebsd-ubin ) + kernel_linux? ( sys-fs/e2fsprogs + virtual/os-headers )" + +src_unpack() { + unpack ${A} + cd "${S}" + elibtoolize + epunt_cxx +} + +src_compile() { + local myconf + + if ! use static && ! use build ; then + myconf="--enable-bsdtar=shared --enable-bsdcpio=shared" + fi + + econf --bindir=/bin --enable-bsdcpio \ + $(use_enable acl) $(use_enable xattr) \ + ${myconf} \ + --disable-dependency-tracking || die "econf failed." + + emake || die "emake failed." +} + +src_install() { + emake -j1 DESTDIR="${D}" install || die "emake install failed." + + # Create tar symlink for FreeBSD + if [[ ${CHOST} == *-freebsd* ]]; then + dosym bsdtar /bin/tar + dosym bsdtar.1 /usr/share/man/man1/tar.1 + # We may wish to switch to symlink bsdcpio to cpio too one day + fi + + dodoc NEWS README + + if use build; then + rm -rf "${D}"/usr + rm -rf "${D}"/lib/*.so* + return 0 + fi + + dodir /$(get_libdir) + mv "${D}"/usr/$(get_libdir)/*.so* "${D}"/$(get_libdir) + gen_usr_ldscript libarchive.so +} |