diff options
Diffstat (limited to 'app-arch/bzip2/bzip2-1.0.2-r2.ebuild')
-rw-r--r-- | app-arch/bzip2/bzip2-1.0.2-r2.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/app-arch/bzip2/bzip2-1.0.2-r2.ebuild b/app-arch/bzip2/bzip2-1.0.2-r2.ebuild new file mode 100644 index 000000000000..00db26cbfc26 --- /dev/null +++ b/app-arch/bzip2/bzip2-1.0.2-r2.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/bzip2/bzip2-1.0.2-r2.ebuild,v 1.1 2003/11/14 20:00:38 seemant Exp $ + +DESCRIPTION="A high-quality data compressor used extensively by Gentoo Linux" +HOMEPAGE="http://sources.redhat.com/bzip2/" +SRC_URI="ftp://sources.redhat.com/pub/bzip2/v102/${P}.tar.gz" + +LICENSE="BZIP2" +SLOT="0" +KEYWORDS="x86 amd64 ppc sparc alpha mips hppa arm ia64" +IUSE="build static" + +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + + cd ${S} + cp Makefile Makefile.orig + # for optimizations, we keep -fomit-frame-pointer and -fno-strength-reduce + # for speed. -fstrength-reduce seems to slow down the code slightly on x86. + # (drobbins) + use static && CFLAGS="${CFLAGS} -static" + sed -e 's:\$(PREFIX)/man:\$(PREFIX)/share/man:g' \ + -e "s:-O2:${CFLAGS}:g" \ + Makefile.orig > Makefile || die + cp Makefile-libbz2_so Makefile-libbz2_so.orig + sed -e "s:-O2:${CFLAGS}:g" \ + Makefile-libbz2_so.orig > Makefile-libbz2_so || die +} + +src_compile() { + if [ -z "`use build`" ] + then + emake CC="${CC}" CXX="${CXX}" -f Makefile-libbz2_so all || die "Make failed" + fi + emake CC="${CC}" CXX="${CXX}" all || die "Make failed" +} + +src_install() { + if [ -z "`use build`" ] + then + make PREFIX=${D}/usr install || die + mv ${D}/usr/bin ${D} + + dolib.so ${S}/libbz2.so.${PV} + dosym /usr/lib/libbz2.so.${PV} /usr/lib/libbz2.so.1.0 + dosym /usr/lib/libbz2.so.${PV} /usr/lib/libbz2.so + + dodoc README LICENSE CHANGES Y2K_INFO + docinto txt + dodoc *.txt + docinto ps + dodoc *.ps + dohtml manual_*.html + else + into / + dobin bzip2 + newbin bzip2 bzcat + + cd ${D}/bin + ln -s bzip2 bunzip2 + fi +} |