diff options
author | Sandro Bonazzola <sanchan@gentoo.org> | 2006-12-06 19:52:39 +0000 |
---|---|---|
committer | Sandro Bonazzola <sanchan@gentoo.org> | 2006-12-06 19:52:39 +0000 |
commit | 269dd6c0188e44970fc35f47990ade48db47e902 (patch) | |
tree | 5e1bc6b2b07e3f5523d487b06c3394c05394eab2 /dev-libs/popt | |
parent | Changed to use GAMES_PREFIX_OPT in ut2004.xml instead of a hard-coded /opt. (diff) | |
download | gentoo-2-269dd6c0188e44970fc35f47990ade48db47e902.tar.gz gentoo-2-269dd6c0188e44970fc35f47990ade48db47e902.tar.bz2 gentoo-2-269dd6c0188e44970fc35f47990ade48db47e902.zip |
Version bump (bug #121862) thanks to Timothy Redaelli <drizzt@gentoo.org>.
(Portage version: 2.1.2_rc2-r5)
Diffstat (limited to 'dev-libs/popt')
-rw-r--r-- | dev-libs/popt/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/popt/files/digest-popt-1.10.7 | 3 | ||||
-rw-r--r-- | dev-libs/popt/popt-1.10.7.ebuild | 39 |
3 files changed, 48 insertions, 1 deletions
diff --git a/dev-libs/popt/ChangeLog b/dev-libs/popt/ChangeLog index f761a1696bb3..d0d761652d80 100644 --- a/dev-libs/popt/ChangeLog +++ b/dev-libs/popt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/popt # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/popt/ChangeLog,v 1.45 2006/11/08 17:12:01 drizzt Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/popt/ChangeLog,v 1.46 2006/12/06 19:52:39 sanchan Exp $ + +*popt-1.10.7 (06 Dec 2006) + + 06 Dec 2006; Sandro Bonazzola <sanchan@gentoo.org> +popt-1.10.7.ebuild: + Version bump (bug #121862) thanks to Timothy Redaelli <drizzt@gentoo.org>. 08 Nov 2006; Timothy Redaelli <drizzt@gentoo.org> popt-1.10.4-r3.ebuild: Keyworded ~ppc, wrt bug 121862. diff --git a/dev-libs/popt/files/digest-popt-1.10.7 b/dev-libs/popt/files/digest-popt-1.10.7 new file mode 100644 index 000000000000..33365fe09a70 --- /dev/null +++ b/dev-libs/popt/files/digest-popt-1.10.7 @@ -0,0 +1,3 @@ +MD5 912f67c5995608109355ed0beb5125fa popt-1.10.7.tar.gz 728283 +RMD160 d5342c1a5e1059f45d75a93ca7a3c997b2fef05d popt-1.10.7.tar.gz 728283 +SHA256 04d945f6a9fbfef248c594e2fee5c1446987ad40c31ec8cf9b5fdbcbb3d6e35c popt-1.10.7.tar.gz 728283 diff --git a/dev-libs/popt/popt-1.10.7.ebuild b/dev-libs/popt/popt-1.10.7.ebuild new file mode 100644 index 000000000000..3a5b0a0617fe --- /dev/null +++ b/dev-libs/popt/popt-1.10.7.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/popt/popt-1.10.7.ebuild,v 1.1 2006/12/06 19:52:39 sanchan Exp $ + +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="1.9" + +inherit flag-o-matic autotools + +DESCRIPTION="Parse Options - Command line parser" +HOMEPAGE="http://www.rpm.org/" +SRC_URI="ftp://jbj.org/pub/rpm-4.4.x/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="nls" + +RDEPEND="nls? ( virtual/libintl )" +DEPEND="nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-1.10.4-lib64.patch + epatch "${FILESDIR}"/${PN}-1.10.4-regression.patch + use nls || epatch "${FILESDIR}"/${PN}-1.10.4-nls.patch + eautoreconf +} + +src_compile() { + econf $(use_enable nls) || die + emake || die "emake failed" +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc CHANGES README +} |