diff options
author | John N. Laliberte <allanonjl@gentoo.org> | 2006-11-02 19:55:04 +0000 |
---|---|---|
committer | John N. Laliberte <allanonjl@gentoo.org> | 2006-11-02 19:55:04 +0000 |
commit | 90d99f9ea498599c67628a25b77df32094564bee (patch) | |
tree | 1cccb681174197cafdfe17c6a413e65f6b4f8f7e /app-text/iso-codes | |
parent | Updated zprofile to contain /usr/local/bin in PATH. Thanks to Stephen Floor <... (diff) | |
download | gentoo-2-90d99f9ea498599c67628a25b77df32094564bee.tar.gz gentoo-2-90d99f9ea498599c67628a25b77df32094564bee.tar.bz2 gentoo-2-90d99f9ea498599c67628a25b77df32094564bee.zip |
new version. update src_uri, remove pyxml dep since its no longer needed, remove patches since they were applied upstream.
(Portage version: 2.1.2_pre3-r8)
Diffstat (limited to 'app-text/iso-codes')
-rw-r--r-- | app-text/iso-codes/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/iso-codes/files/digest-iso-codes-0.58 | 3 | ||||
-rw-r--r-- | app-text/iso-codes/iso-codes-0.58.ebuild | 38 |
3 files changed, 49 insertions, 1 deletions
diff --git a/app-text/iso-codes/ChangeLog b/app-text/iso-codes/ChangeLog index bc65a1365379..3868ead6e8ae 100644 --- a/app-text/iso-codes/ChangeLog +++ b/app-text/iso-codes/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-text/iso-codes # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.22 2006/10/31 20:33:03 allanonjl Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.23 2006/11/02 19:55:04 allanonjl Exp $ + +*iso-codes-0.58 (02 Nov 2006) + + 02 Nov 2006; John N. Laliberte <allanonjl@gentoo.org> + +iso-codes-0.58.ebuild: + new version. update src_uri, remove pyxml dep since its no longer needed, + remove patches since they were applied upstream. 31 Oct 2006; John N. Laliberte <allanonjl@gentoo.org> -iso-codes-0.47.ebuild, -iso-codes-0.47-r1.ebuild, iso-codes-0.49.ebuild, diff --git a/app-text/iso-codes/files/digest-iso-codes-0.58 b/app-text/iso-codes/files/digest-iso-codes-0.58 new file mode 100644 index 000000000000..dfb11a00d4ff --- /dev/null +++ b/app-text/iso-codes/files/digest-iso-codes-0.58 @@ -0,0 +1,3 @@ +MD5 392045b5cb5b97ae1f431d5142725d56 iso-codes-0.58.tar.bz2 4425093 +RMD160 1adf16865b90ac8007ee75b4a5385c51d8fa137e iso-codes-0.58.tar.bz2 4425093 +SHA256 c6a83ef72e64d4122d835c13c3a4c2f4f001e4967e1e1b2c968e0f6ca84350ba iso-codes-0.58.tar.bz2 4425093 diff --git a/app-text/iso-codes/iso-codes-0.58.ebuild b/app-text/iso-codes/iso-codes-0.58.ebuild new file mode 100644 index 000000000000..d02a31465a6b --- /dev/null +++ b/app-text/iso-codes/iso-codes-0.58.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-0.58.ebuild,v 1.1 2006/11/02 19:55:04 allanonjl Exp $ + +inherit eutils autotools + +DESCRIPTION="Provides the list of country and language names" +HOMEPAGE="http://alioth.debian.org/projects/pkg-isocodes/" +SRC_URI="ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="" + +DEPEND="sys-devel/gettext + >=dev-lang/python-2.3 + >=sys-devel/automake-1.9" + +src_unpack() { + unpack "${A}" + cd "${S}" + + # fix install location for multilib machines + sed -i -e 's:(datadir)/pkgconfig:(libdir)/pkgconfig:g' Makefile.am + + eautomake +} + +src_compile() { + econf || die "configure failed" +} + +src_install() { + make DESTDIR="${D}" install || die "Installation failed" + + dodoc ChangeLog README TODO +} |