diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-03-15 22:15:35 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-03-15 22:15:35 +0000 |
commit | a00cb28d40342def826ae1494362990f7260bfca (patch) | |
tree | 1acbe7fe1a934b6487448f73352da92f6618f517 /app-arch | |
parent | ppc stable, bug #210013 (diff) | |
download | gentoo-2-a00cb28d40342def826ae1494362990f7260bfca.tar.gz gentoo-2-a00cb28d40342def826ae1494362990f7260bfca.tar.bz2 gentoo-2-a00cb28d40342def826ae1494362990f7260bfca.zip |
Add new beta of libarchive 2.5. Not package.masked as there seems not to be any huge changes for now.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/libarchive/ChangeLog | 9 | ||||
-rw-r--r-- | app-arch/libarchive/libarchive-2.5.0_beta.ebuild | 75 |
2 files changed, 83 insertions, 1 deletions
diff --git a/app-arch/libarchive/ChangeLog b/app-arch/libarchive/ChangeLog index 5a0a188fd90f..0aec45db8e88 100644 --- a/app-arch/libarchive/ChangeLog +++ b/app-arch/libarchive/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-arch/libarchive # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/ChangeLog,v 1.21 2008/03/15 16:21:59 coldwind Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/ChangeLog,v 1.22 2008/03/15 22:15:35 flameeyes Exp $ + +*libarchive-2.5.0_beta (15 Mar 2008) + + 15 Mar 2008; Diego Pettenò <flameeyes@gentoo.org> + +libarchive-2.5.0_beta.ebuild: + Add new beta of libarchive 2.5. Not package.masked as there seems not to + be any huge changes for now. 15 Mar 2008; Santiago M. Mola <coldwind@gentoo.org> libarchive-2.4.12.ebuild: diff --git a/app-arch/libarchive/libarchive-2.5.0_beta.ebuild b/app-arch/libarchive/libarchive-2.5.0_beta.ebuild new file mode 100644 index 000000000000..4d505d45691f --- /dev/null +++ b/app-arch/libarchive/libarchive-2.5.0_beta.ebuild @@ -0,0 +1,75 @@ +# 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.5.0_beta.ebuild,v 1.1 2008/03/15 22:15:35 flameeyes Exp $ + +MY_P="${P/_beta/b}" + +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/${MY_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} + kernel_linux? ( sys-fs/e2fsprogs + virtual/os-headers )" + +S="${WORKDIR}/${MY_P}" + +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 +} |