diff options
author | 2008-03-18 13:38:39 +0000 | |
---|---|---|
committer | 2008-03-18 13:38:39 +0000 | |
commit | 79b87edf94e07274bc11aaad74dacdb6d34529b2 (patch) | |
tree | 2110c7fb7417f3faafb5767546dcb9aba2970ed2 /app-arch | |
parent | Run eautoconf during unpack phase. Closes bug #207492. (diff) | |
download | gentoo-2-79b87edf94e07274bc11aaad74dacdb6d34529b2.tar.gz gentoo-2-79b87edf94e07274bc11aaad74dacdb6d34529b2.tar.bz2 gentoo-2-79b87edf94e07274bc11aaad74dacdb6d34529b2.zip |
Version bump #213820.
(Portage version: 2.2_pre2)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/bzip2/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/bzip2/bzip2-1.0.5.ebuild | 77 |
2 files changed, 83 insertions, 1 deletions
diff --git a/app-arch/bzip2/ChangeLog b/app-arch/bzip2/ChangeLog index 4072870e80b4..190ba039d81f 100644 --- a/app-arch/bzip2/ChangeLog +++ b/app-arch/bzip2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/bzip2 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/bzip2/ChangeLog,v 1.60 2008/02/04 21:49:39 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/bzip2/ChangeLog,v 1.61 2008/03/18 13:38:39 vapier Exp $ + +*bzip2-1.0.5 (18 Mar 2008) + + 18 Mar 2008; Mike Frysinger <vapier@gentoo.org> +bzip2-1.0.5.ebuild: + Version bump #213820. 04 Feb 2008; Jeroen Roovers <jer@gentoo.org> bzip2-1.0.4-r1.ebuild: Stable for HPPA too. diff --git a/app-arch/bzip2/bzip2-1.0.5.ebuild b/app-arch/bzip2/bzip2-1.0.5.ebuild new file mode 100644 index 000000000000..d008b18b9f0f --- /dev/null +++ b/app-arch/bzip2/bzip2-1.0.5.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/bzip2/bzip2-1.0.5.ebuild,v 1.1 2008/03/18 13:38:39 vapier Exp $ + +inherit eutils multilib toolchain-funcs flag-o-matic + +DESCRIPTION="A high-quality data compressor used extensively by Gentoo Linux" +HOMEPAGE="http://www.bzip.org/" +SRC_URI="http://www.bzip.org/${PV}/${P}.tar.gz" + +LICENSE="BZIP2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="static" + +DEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-1.0.4-makefile-CFLAGS.patch + epatch "${FILESDIR}"/${PN}-1.0.4-saneso.patch + epatch "${FILESDIR}"/${PN}-1.0.4-man-links.patch #172986 + epatch "${FILESDIR}"/${PN}-1.0.3-shared-largefile-support.patch + epatch "${FILESDIR}"/${PN}-1.0.2-progress.patch + epatch "${FILESDIR}"/${PN}-1.0.3-no-test.patch + epatch "${FILESDIR}"/${PN}-1.0.4-POSIX-shell.patch #193365 + sed -i -e 's:\$(PREFIX)/man:\$(PREFIX)/share/man:g' Makefile || die "sed manpath" + + # - Generate symlinks instead of hardlinks + # - pass custom variables to control libdir + sed -i \ + -e 's:ln -s -f $(PREFIX)/bin/:ln -s :' \ + -e 's:$(PREFIX)/lib:$(PREFIX)/$(LIBDIR):g' \ + Makefile || die "sed links" + + # fixup broken version stuff + sed -i \ + -e "s:1\.0\.4:${PV}:" \ + bzip2.1 bzip2.txt Makefile-libbz2_so manual.{html,ps,xml} || die +} + +src_compile() { + local makeopts=" + CC=$(tc-getCC) + AR=$(tc-getAR) + RANLIB=$(tc-getRANLIB) + " + emake ${makeopts} -f Makefile-libbz2_so all || die "Make failed libbz2" + use static && append-flags -static + emake LDFLAGS="${LDFLAGS}" ${makeopts} all || die "Make failed" + + if ! tc-is-cross-compiler ; then + # bzip2 is a "core" package and the tests are quick ... + emake check || die "test failed" + fi +} + +src_install() { + emake PREFIX="${D}"/usr LIBDIR=$(get_libdir) install || die + dodoc README* CHANGES bzip2.txt manual.* + + # move bzip2 binaries to /bin and use the shared libbz2.so + mv "${D}"/usr/bin "${D}"/bin || die + dosym bzip2 /bin/bzcat + dosym bzip2 /bin/bunzip2 + into / + if ! use static ; then + newbin bzip2-shared bzip2 || die "dobin shared" + fi + + dolib.so libbz2.so.${PV} || die "dolib shared" + for v in libbz2.so{,.{${PV%%.*},${PV%.*}}} ; do + dosym libbz2.so.${PV} /$(get_libdir)/${v} + done + gen_usr_ldscript libbz2.so +} |