diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-05-25 11:24:11 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-05-25 11:24:11 +0000 |
commit | efa00df82f9ebb4b9bfcff46cdaf57fb97b3079a (patch) | |
tree | 17b61659349cdc5cd46de75df60486cd9230a627 /eclass | |
parent | Add kdehiddenvisibility useflag that enables the GCC hidden visibility, when ... (diff) | |
download | gentoo-2-efa00df82f9ebb4b9bfcff46cdaf57fb97b3079a.tar.gz gentoo-2-efa00df82f9ebb4b9bfcff46cdaf57fb97b3079a.tar.bz2 gentoo-2-efa00df82f9ebb4b9bfcff46cdaf57fb97b3079a.zip |
Unleash the linguas handling in IUSE now that Halcy0n has the linguas.desc ready to commmit.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde.eclass | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 1f9692116cfa..384e901953de 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.154 2006/05/25 11:12:46 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.155 2006/05/25 11:24:11 flameeyes Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -21,12 +21,11 @@ fi # Set USE_KEG_PACKAGING=1 before inheriting if the package use extragear-like # packaging and then supports ${LANGS} and ${LANGS_DOC} variables. -# Don't enable until repoman is fixed. -# if [[ -n ${USE_KEG_PACKAGING} && -n "${LANGS}${LANGS_DOC}" ]]; then -# for lang in ${LANGS} ${LANGS_DOC}; do -# IUSE="${IUSE} linguas_${lang}" -# done -# fi +if [[ -n ${USE_KEG_PACKAGING} && -n "${LANGS}${LANGS_DOC}" ]]; then + for lang in ${LANGS} ${LANGS_DOC}; do + IUSE="${IUSE} linguas_${lang}" + done +fi DEPEND=">=sys-devel/automake-1.7.0 sys-devel/autoconf |