summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2008-08-03 21:29:24 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2008-08-03 21:29:24 +0000
commit09e9d09d60a8125320765c09903fbf3a771e3a52 (patch)
tree257d0c823f590bec56a87c348c4596ea2d522999 /app-text
parent3.42.3 version bump for bug 233563. Remove old ebuild. (diff)
downloadgentoo-2-09e9d09d60a8125320765c09903fbf3a771e3a52.tar.gz
gentoo-2-09e9d09d60a8125320765c09903fbf3a771e3a52.tar.bz2
gentoo-2-09e9d09d60a8125320765c09903fbf3a771e3a52.zip
bump to 3.2
(Portage version: 2.2_rc3/cvs/Linux 2.6.26-gentoo-mactel x86_64)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/iso-codes/ChangeLog7
-rw-r--r--app-text/iso-codes/iso-codes-3.2.ebuild40
2 files changed, 46 insertions, 1 deletions
diff --git a/app-text/iso-codes/ChangeLog b/app-text/iso-codes/ChangeLog
index bf723694083c..63c6fd207cb1 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-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.41 2008/02/19 00:11:18 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.42 2008/08/03 21:29:24 eva Exp $
+
+*iso-codes-3.2 (03 Aug 2008)
+
+ 03 Aug 2008; Gilles Dartiguelongue <eva@gentoo.org> +iso-codes-3.2.ebuild:
+ bump to 3.2
19 Feb 2008; Gilles Dartiguelongue <eva@gentoo.org> iso-codes-0.58.ebuild,
iso-codes-1.5.ebuild:
diff --git a/app-text/iso-codes/iso-codes-3.2.ebuild b/app-text/iso-codes/iso-codes-3.2.ebuild
new file mode 100644
index 000000000000..f768e506a091
--- /dev/null
+++ b/app-text/iso-codes/iso-codes-3.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.2.ebuild,v 1.1 2008/08/03 21:29:24 eva Exp $
+
+WANT_AUTOMAKE="latest"
+
+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 ~x86-fbsd"
+IUSE=""
+
+RDEPEND=""
+DEPEND="sys-devel/gettext
+ >=dev-lang/python-2.3"
+
+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() {
+ emake DESTDIR="${D}" install || die "Installation failed"
+
+ dodoc ChangeLog README TODO
+}