diff options
author | Jeroen Roovers <jer@gentoo.org> | 2009-04-29 12:10:31 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2009-04-29 12:10:31 +0000 |
commit | 6f3f9d51538c9de83f0b22fa737fc9f504197882 (patch) | |
tree | 1f037b3c3706198794e59d8dbc305a96566021ee /app-arch/pbzip2/pbzip2-1.0.3.ebuild | |
parent | Remove kickpim from p.mask since it is removed from tree. (diff) | |
download | historical-6f3f9d51538c9de83f0b22fa737fc9f504197882.tar.gz historical-6f3f9d51538c9de83f0b22fa737fc9f504197882.tar.bz2 historical-6f3f9d51538c9de83f0b22fa737fc9f504197882.zip |
Remove old.
Package-Manager: portage-2.2_rc31/cvs/Linux i686
Diffstat (limited to 'app-arch/pbzip2/pbzip2-1.0.3.ebuild')
-rw-r--r-- | app-arch/pbzip2/pbzip2-1.0.3.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/app-arch/pbzip2/pbzip2-1.0.3.ebuild b/app-arch/pbzip2/pbzip2-1.0.3.ebuild deleted file mode 100644 index 3a9938c8026e..000000000000 --- a/app-arch/pbzip2/pbzip2-1.0.3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pbzip2/pbzip2-1.0.3.ebuild,v 1.1 2008/11/17 07:43:54 jer Exp $ - -inherit multilib eutils - -DESCRIPTION="parallel bzip2 (de)compressor using libbz2" -HOMEPAGE="http://compression.ca/pbzip2/" -SRC_URI="http://compression.ca/${PN}/${P}.tar.gz" - -LICENSE="PBZIP2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="static" - -DEPEND="app-arch/bzip2" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - sed -e 's:^CFLAGS = .*$:#&:g' -e 's:g++:$(CXX):g' -i ${P}/Makefile || die - epatch "${FILESDIR}"/${P}-uclibc.patch -} - -src_compile() { - tc-export CXX - if use static ; then - cp -f /usr/$(get_libdir)/libbz2.a "${S}" - emake pbzip2-static || die "Failed to build" - else - emake pbzip2 || die "Failed to build" - fi -} - -src_install() { - dobin pbzip2 || die "Failed to install" - dodoc AUTHORS ChangeLog README - doman pbzip2.1 || die "Failed to install man page" - dosym /usr/bin/pbzip2 /usr/bin/pbunzip2 -} |