summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2010-02-09 14:28:12 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2010-02-09 14:28:12 +0000
commit740b6ea9f177695af62be4a6a0a4b21b01b03c46 (patch)
tree4e7a2d59f882f7287e2fce8ef8c13d817244ec6e /app-arch
parentVersion bump to final, thanks to Enrico. (diff)
downloadgentoo-2-740b6ea9f177695af62be4a6a0a4b21b01b03c46.tar.gz
gentoo-2-740b6ea9f177695af62be4a6a0a4b21b01b03c46.tar.bz2
gentoo-2-740b6ea9f177695af62be4a6a0a4b21b01b03c46.zip
Version bump, remove old versions.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'app-arch')
-rw-r--r--app-arch/libarchive/ChangeLog9
-rw-r--r--app-arch/libarchive/libarchive-2.7.0-r1.ebuild84
-rw-r--r--app-arch/libarchive/libarchive-2.8.0.ebuild (renamed from app-arch/libarchive/libarchive-2.7.902a.ebuild)2
3 files changed, 9 insertions, 86 deletions
diff --git a/app-arch/libarchive/ChangeLog b/app-arch/libarchive/ChangeLog
index 7dd722029bd8..784fd6c5b599 100644
--- a/app-arch/libarchive/ChangeLog
+++ b/app-arch/libarchive/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-arch/libarchive
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/ChangeLog,v 1.76 2010/01/31 15:25:26 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/ChangeLog,v 1.77 2010/02/09 14:28:12 flameeyes Exp $
+
+*libarchive-2.8.0 (09 Feb 2010)
+
+ 09 Feb 2010; Diego E. Pettenò <flameeyes@gentoo.org>
+ -libarchive-2.7.0-r1.ebuild, -libarchive-2.7.902a.ebuild,
+ +libarchive-2.8.0.ebuild:
+ Version bump, remove old versions.
31 Jan 2010; Raúl Porcel <armin76@gentoo.org> libarchive-2.7.1-r1.ebuild:
alpha/ia64/sh/sparc stable wrt #298563
diff --git a/app-arch/libarchive/libarchive-2.7.0-r1.ebuild b/app-arch/libarchive/libarchive-2.7.0-r1.ebuild
deleted file mode 100644
index 847257a2106e..000000000000
--- a/app-arch/libarchive/libarchive-2.7.0-r1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/libarchive-2.7.0-r1.ebuild,v 1.9 2009/08/31 15:41:06 ranger Exp $
-
-EAPI=1
-
-inherit eutils libtool toolchain-funcs flag-o-matic
-
-DESCRIPTION="BSD tar command"
-HOMEPAGE="http://people.freebsd.org/~kientzle/libarchive"
-SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz
- http://people.freebsd.org/~kientzle/libarchive/src/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
-IUSE="static acl xattr kernel_linux +bzip2 +lzma +zlib"
-
-COMPRESS_LIBS_DEPEND="lzma? ( app-arch/lzma-utils )
- bzip2? ( app-arch/bzip2 )
- zlib? ( sys-libs/zlib )"
-
-RDEPEND="!dev-libs/libarchive
- dev-libs/openssl
- acl? ( virtual/acl )
- xattr? ( kernel_linux? ( sys-apps/attr ) )
- !static? ( ${COMPRESS_LIBS_DEPEND} )"
-DEPEND="${RDEPEND}
- ${COMPRESS_LIBS_DEPEND}
- kernel_linux? ( sys-fs/e2fsprogs
- virtual/os-headers )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}"/${P}-fortified-sources.patch
- epatch "${FILESDIR}"/${P}-pipe.patch
-
- elibtoolize
- epunt_cxx
-}
-
-src_compile() {
- local myconf
-
- if ! use static ; then
- myconf="--enable-bsdtar=shared --enable-bsdcpio=shared"
- fi
-
- # Check for need of this in 2.7.1 and later, on 2.7.0, -Werror was
- # added to the final release, but since it's done in the
- # Makefile.am we can just work it around this way.
- append-flags -Wno-error
-
- # We disable lzma because we don't have liblzma (not liblzmadec!)
- # currently.
- econf --bindir=/bin \
- --enable-bsdtar --enable-bsdcpio \
- $(use_enable acl) $(use_enable xattr) \
- $(use_with zlib) \
- $(use_with bzip2 bz2lib) $(use_with lzma lzmadec) \
- --without-lzma \
- ${myconf} \
- --disable-dependency-tracking || die "econf failed."
-
- emake || die "emake failed."
-}
-
-src_install() {
- emake 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
- dodir /$(get_libdir)
- mv "${D}"/usr/$(get_libdir)/*.so* "${D}"/$(get_libdir)
- gen_usr_ldscript libarchive.so
-}
diff --git a/app-arch/libarchive/libarchive-2.7.902a.ebuild b/app-arch/libarchive/libarchive-2.8.0.ebuild
index 3f4210b476be..f3ca7462006f 100644
--- a/app-arch/libarchive/libarchive-2.7.902a.ebuild
+++ b/app-arch/libarchive/libarchive-2.8.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/libarchive-2.7.902a.ebuild,v 1.1 2010/01/05 15:12:20 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/libarchive/libarchive-2.8.0.ebuild,v 1.1 2010/02/09 14:28:12 flameeyes Exp $
EAPI="2"