diff options
author | 2007-07-14 13:24:41 +0000 | |
---|---|---|
committer | 2007-07-14 13:24:41 +0000 | |
commit | 94973bb14214a91729cd6f2e72d34f66f6560174 (patch) | |
tree | 83feccdf7c9f8002c8e3422e22948ba103cfb89e /app-arch/libarchive | |
parent | New ebuild for bug #144532 (diff) | |
download | gentoo-2-94973bb14214a91729cd6f2e72d34f66f6560174.tar.gz gentoo-2-94973bb14214a91729cd6f2e72d34f66f6560174.tar.bz2 gentoo-2-94973bb14214a91729cd6f2e72d34f66f6560174.zip |
Version bump.
(Portage version: 2.1.3_rc8)
Diffstat (limited to 'app-arch/libarchive')
-rw-r--r-- | app-arch/libarchive/ChangeLog | 8 | ||||
-rw-r--r-- | app-arch/libarchive/files/digest-libarchive-2.2.5 | 3 | ||||
-rw-r--r-- | app-arch/libarchive/libarchive-2.2.5.ebuild | 82 |
3 files changed, 92 insertions, 1 deletions
diff --git a/app-arch/libarchive/ChangeLog b/app-arch/libarchive/ChangeLog index fa860fad5525..117584da7bae 100644 --- a/app-arch/libarchive/ChangeLog +++ b/app-arch/libarchive/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-arch/libarchive # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/ChangeLog,v 1.1 2007/07/13 13:13:29 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/ChangeLog,v 1.2 2007/07/14 13:24:41 flameeyes Exp $ + +*libarchive-2.2.5 (14 Jul 2007) + + 14 Jul 2007; Diego Pettenò <flameeyes@gentoo.org> + +libarchive-2.2.5.ebuild: + Version bump. 13 Jul 2007; Diego Pettenò <flameeyes@gentoo.org> +files/libarchive-2.1.5-acl.patch, +files/libarchive-2.1.9-static.patch, diff --git a/app-arch/libarchive/files/digest-libarchive-2.2.5 b/app-arch/libarchive/files/digest-libarchive-2.2.5 new file mode 100644 index 000000000000..40607dd0ccc8 --- /dev/null +++ b/app-arch/libarchive/files/digest-libarchive-2.2.5 @@ -0,0 +1,3 @@ +MD5 4b7773786e185a16353440c7e62a289a libarchive-2.2.5.tar.gz 637691 +RMD160 fda5c804679e29954b387ae2c06b32bca4ae7bd4 libarchive-2.2.5.tar.gz 637691 +SHA256 510102b594b8cfd8fa6b3718f40a8ef059a95ed453a97b60ad9a3502c0f16f26 libarchive-2.2.5.tar.gz 637691 diff --git a/app-arch/libarchive/libarchive-2.2.5.ebuild b/app-arch/libarchive/libarchive-2.2.5.ebuild new file mode 100644 index 000000000000..96db9e83dafd --- /dev/null +++ b/app-arch/libarchive/libarchive-2.2.5.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/libarchive-2.2.5.ebuild,v 1.1 2007/07/14 13:24:41 flameeyes Exp $ + +inherit eutils autotools toolchain-funcs flag-o-matic + +MY_P="${P/_beta/b}" + +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" + +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}" + + epatch "${FILESDIR}"/${PN}-2.1.9-static.patch + epatch "${FILESDIR}"/${PN}-2.1.5-acl.patch + + eautoreconf + epunt_cxx +} + +src_compile() { + local myconf + + if use static || use build ; then + myconf="${myconf} --enable-static-bsdtar" + else + myconf="${myconf} --disable-static-bsdtar" + fi + + # Upstream doesn't seem to care to fix the problems + # and I don't want to continue running after them. + append-flags -fno-strict-aliasing + + econf \ + --bindir=/bin \ + $(use_enable acl) \ + $(use_enable xattr) \ + ${myconf} || 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 + fi + + 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 +} |