diff options
author | Joe McCann <joem@gentoo.org> | 2006-01-06 23:54:24 +0000 |
---|---|---|
committer | Joe McCann <joem@gentoo.org> | 2006-01-06 23:54:24 +0000 |
commit | c24222c31111b86a9fe514c7531ac5e60a75054e (patch) | |
tree | 535845d4fa237e5867c32509f9dccadde0025a98 /app-text | |
parent | we want CHOST not CTARGET (diff) | |
download | historical-c24222c31111b86a9fe514c7531ac5e60a75054e.tar.gz historical-c24222c31111b86a9fe514c7531ac5e60a75054e.tar.bz2 historical-c24222c31111b86a9fe514c7531ac5e60a75054e.zip |
New version
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/iso-codes/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/iso-codes/Manifest | 14 | ||||
-rw-r--r-- | app-text/iso-codes/files/digest-iso-codes-0.49 | 1 | ||||
-rw-r--r-- | app-text/iso-codes/iso-codes-0.49.ebuild | 35 |
4 files changed, 46 insertions, 13 deletions
diff --git a/app-text/iso-codes/ChangeLog b/app-text/iso-codes/ChangeLog index c0499ae32374..1bf47074e9f8 100644 --- a/app-text/iso-codes/ChangeLog +++ b/app-text/iso-codes/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/iso-codes -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.9 2005/12/26 15:01:19 kloeri Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.10 2006/01/06 23:54:24 joem Exp $ + +*iso-codes-0.49 (06 Jan 2006) + + 06 Jan 2006; Joe McCann <joem@gentoo.org> +iso-codes-0.49.ebuild: + New version 26 Dec 2005; Bryan Ăstergaard <kloeri@gentoo.org iso-codes-0.47-r1.ebuild: diff --git a/app-text/iso-codes/Manifest b/app-text/iso-codes/Manifest index b8378fa76d87..e8e7fe91a2a7 100644 --- a/app-text/iso-codes/Manifest +++ b/app-text/iso-codes/Manifest @@ -1,16 +1,8 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 a036b50488f8c4b0eeeb7ce832e8e465 ChangeLog 1474 +MD5 7b3a7f713e4baceb5c25b8b8ec5f2f08 ChangeLog 1587 MD5 f0bffb8e6476f755092bfe57861f352f files/digest-iso-codes-0.47 72 MD5 f0bffb8e6476f755092bfe57861f352f files/digest-iso-codes-0.47-r1 72 +MD5 91c41799ad34136b5c3481feef989039 files/digest-iso-codes-0.49 72 MD5 5f712fd7cbbd045a4ee0b06b6e466c43 iso-codes-0.47-r1.ebuild 867 MD5 3db66b5bb868269ce04d441af6790a36 iso-codes-0.47.ebuild 830 +MD5 cb8c89b39ac15c6bb49e013d222f3767 iso-codes-0.49.ebuild 908 MD5 e9817ec1ed09efcf042e9d64a3f947ce metadata.xml 387 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2 (GNU/Linux) - -iD8DBQFDsBQfugEuf3OQ0akRAgvkAJsH6Es5ykk7Fj6jw1+CH1h/QbeNfQCeOCMi -B8XTlwb8zPlazPfg0bsh94U= -=XqvN ------END PGP SIGNATURE----- diff --git a/app-text/iso-codes/files/digest-iso-codes-0.49 b/app-text/iso-codes/files/digest-iso-codes-0.49 new file mode 100644 index 000000000000..9d408c99b9c2 --- /dev/null +++ b/app-text/iso-codes/files/digest-iso-codes-0.49 @@ -0,0 +1 @@ +MD5 62b7f9469e00b92558d5d043a4be3910 iso-codes_0.49.orig.tar.gz 3698966 diff --git a/app-text/iso-codes/iso-codes-0.49.ebuild b/app-text/iso-codes/iso-codes-0.49.ebuild new file mode 100644 index 000000000000..0621d79b1d21 --- /dev/null +++ b/app-text/iso-codes/iso-codes-0.49.ebuild @@ -0,0 +1,35 @@ +# 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.49.ebuild,v 1.1 2006/01/06 23:54:24 joem Exp $ + +inherit autotools + +DESCRIPTION="Provides the list of country and language names" +HOMEPAGE="http://alioth.debian.org/projects/pkg-isocodes/" +SRC_URI="mirror://debian/pool/main/i/iso-codes/${PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="sys-devel/gettext + >=dev-lang/python-2.3 + >=dev-python/pyxml-0.8.4 + >=sys-devel/automake-1.9" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i -e 's:(datadir)/pkgconfig:(libdir)/pkgconfig:g' Makefile.am + eaclocal + eautoconf + eautomake +} + +src_install() { + econf || die "configure failed" + make DESTDIR="${D}" install || die "Installation failed" + + dodoc ChangeLog README TODO +} |