diff options
Diffstat (limited to 'app-arch/pbzip2/pbzip2-0.9.1.ebuild')
-rw-r--r-- | app-arch/pbzip2/pbzip2-0.9.1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-arch/pbzip2/pbzip2-0.9.1.ebuild b/app-arch/pbzip2/pbzip2-0.9.1.ebuild new file mode 100644 index 000000000000..33a9bf83514c --- /dev/null +++ b/app-arch/pbzip2/pbzip2-0.9.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/pbzip2/pbzip2-0.9.1.ebuild,v 1.1 2005/06/10 14:29:58 wolf31o2 Exp $ + +DESCRIPTION="A parallel version of BZIP2" +HOMEPAGE="http://compression.ca/pbzip2/" +SRC_URI="http://compression.ca/${PN}/${P}.tar.gz" + +LICENSE="PBZIP2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64 ~ppc64 ~s390" +IUSE="static" + +DEPEND="virtual/libc + app-arch/bzip2" + +src_unpack() { + unpack ${A} + sed -i -e 's:-O3:${CFLAGS}:g' ${P}/Makefile || die +} + +src_compile() { + if use static; then + make pbzip2-static + else + make pbzip2 + fi +} + +src_install() { + dobin pbzip2 + dodoc *.txt +} |