diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2012-12-21 23:46:44 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2012-12-21 23:46:44 +0000 |
commit | 095389d39b23946f435878aaea1a163877e1e009 (patch) | |
tree | 976d7fbada68dd9cc933f2ae84246576bd117457 /app-text/iso-codes/iso-codes-3.40.ebuild | |
parent | Allow dynamic build of gwepdecrypt, per bug#402823, thanks to Adrian Bassett (diff) | |
download | historical-095389d39b23946f435878aaea1a163877e1e009.tar.gz historical-095389d39b23946f435878aaea1a163877e1e009.tar.bz2 historical-095389d39b23946f435878aaea1a163877e1e009.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha149/cvs/Linux x86_64
Manifest-Sign-Key: 0xC6085806
Diffstat (limited to 'app-text/iso-codes/iso-codes-3.40.ebuild')
-rw-r--r-- | app-text/iso-codes/iso-codes-3.40.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/app-text/iso-codes/iso-codes-3.40.ebuild b/app-text/iso-codes/iso-codes-3.40.ebuild new file mode 100644 index 000000000000..3592550477ba --- /dev/null +++ b/app-text/iso-codes/iso-codes-3.40.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2012 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.40.ebuild,v 1.1 2012/12/21 23:46:41 eva Exp $ + +EAPI="5" + +inherit eutils + +DESCRIPTION="Provides the list of country and language names" +HOMEPAGE="http://alioth.debian.org/projects/pkg-isocodes/" +SRC_URI="http://pkg-isocodes.alioth.debian.org/downloads/${P}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +IUSE="" + +RDEPEND="" +DEPEND="sys-devel/gettext" + +# This ebuild does not install any binaries +RESTRICT="binchecks strip" + +src_prepare() { + local linguas_bak=${LINGUAS} + local mylinguas="" + + for norm in iso_15924 iso_3166 iso_3166_2 iso_4217 iso_639 iso_639_3; do + einfo "Preparing ${norm}" + + mylinguas="" + LINGUAS=${linguas_bak} + strip-linguas -i "${S}/${norm}" + + for loc in ${LINGUAS}; do + mylinguas="${mylinguas} ${loc}.po" + done + + if [ -n "${mylinguas}" ]; then + sed -e "s:pofiles =.*:pofiles = ${mylinguas}:" \ + -e "s:mofiles =.*:mofiles = ${mylinguas//.po/.mo}:" \ + -i "${S}/${norm}/Makefile.am" "${S}/${norm}/Makefile.in" \ + || die "sed in ${norm} folder failed" + fi + done +} |