diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-07-18 04:36:27 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-07-18 04:36:27 +0000 |
commit | 1978bc80d900d7645d37a277f36100e27b53869c (patch) | |
tree | 7e05711363268cc64027e940632ee90d17037727 /sys-boot | |
parent | Remark alpha stable in 10.0.4 (diff) | |
download | gentoo-2-1978bc80d900d7645d37a277f36100e27b53869c.tar.gz gentoo-2-1978bc80d900d7645d37a277f36100e27b53869c.tar.bz2 gentoo-2-1978bc80d900d7645d37a277f36100e27b53869c.zip |
Do not use LINGUAS directly (bug #426918).
(Portage version: 2.2.0_alpha119/cvs/Linux x86_64)
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/unetbootin/ChangeLog | 5 | ||||
-rw-r--r-- | sys-boot/unetbootin/unetbootin-578.ebuild | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/sys-boot/unetbootin/ChangeLog b/sys-boot/unetbootin/ChangeLog index 09b8d6e496dc..dd0ad5c8ae79 100644 --- a/sys-boot/unetbootin/ChangeLog +++ b/sys-boot/unetbootin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-boot/unetbootin # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.83 2012/07/16 19:08:22 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/ChangeLog,v 1.84 2012/07/18 04:36:27 jer Exp $ + + 18 Jul 2012; Jeroen Roovers <jer@gentoo.org> unetbootin-578.ebuild: + Do not use LINGUAS directly (bug #426918). *unetbootin-578 (16 Jul 2012) diff --git a/sys-boot/unetbootin/unetbootin-578.ebuild b/sys-boot/unetbootin/unetbootin-578.ebuild index 9c67ec1c8298..12085a25752d 100644 --- a/sys-boot/unetbootin/unetbootin-578.ebuild +++ b/sys-boot/unetbootin/unetbootin-578.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-578.ebuild,v 1.1 2012/07/16 19:08:22 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/unetbootin/unetbootin-578.ebuild,v 1.2 2012/07/18 04:36:27 jer Exp $ EAPI="4" @@ -77,8 +77,10 @@ src_install() { done local lingua - for lingua in ${LINGUAS}; do - insinto /usr/share/${PN} - doins ${PN}_${lingua}.qm + for lingua in ${UNBI_LINGUAS}; do + if use linguas_${lingua}; then + insinto /usr/share/${PN} + doins ${PN}_${lingua}.qm + fi done } |