diff options
author | Johannes Huber <johu@gentoo.org> | 2012-08-01 19:38:52 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-08-01 19:38:52 +0000 |
commit | 4b26c17dcff573da3564a0ed599cc9e60e73c010 (patch) | |
tree | 616af4890a6acaa90f3c20bfdf2361fea24b796e /eclass/kde4-functions.eclass | |
parent | Version bump thanks to Elias Probst and Florian Steinel (bug #277909). (diff) | |
download | gentoo-2-4b26c17dcff573da3564a0ed599cc9e60e73c010.tar.gz gentoo-2-4b26c17dcff573da3564a0ed599cc9e60e73c010.tar.bz2 gentoo-2-4b26c17dcff573da3564a0ed599cc9e60e73c010.zip |
Make .xz compression as default for SRC_URI calculation. Add KDE prefix to BUILD_TYPE. No #DONOTCOMPILE if add_subdirectory has a variable parameter ("${...").
Diffstat (limited to 'eclass/kde4-functions.eclass')
-rw-r--r-- | eclass/kde4-functions.eclass | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index e67d12cc528d..c4b9550db3ca 100644 --- a/eclass/kde4-functions.eclass +++ b/eclass/kde4-functions.eclass @@ -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/eclass/kde4-functions.eclass,v 1.59 2012/05/08 22:00:49 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.60 2012/08/01 19:38:52 johu Exp $ inherit versionator @@ -46,15 +46,15 @@ fi # determine the build type if [[ ${PV} = *9999* ]]; then - BUILD_TYPE="live" + KDE_BUILD_TYPE="live" else - BUILD_TYPE="release" + KDE_BUILD_TYPE="release" fi -export BUILD_TYPE +export KDE_BUILD_TYPE -# Set reponame and SCM for moduleses that have fully migrated to git +# Set reponame and SCM for modules that have fully migrated to git # (hack - it's here because it needs to be before SCM inherits from kde4-base) -if [[ ${BUILD_TYPE} == live ]]; then +if [[ ${KDE_BUILD_TYPE} == live ]]; then case "${KMNAME}" in kdebase-workspace) KDE_SCM="git" @@ -93,7 +93,7 @@ esac # this for you. # # Example: KDE_LINGUAS="en_GB de nl" -if [[ ${BUILD_TYPE} != live || -n ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then +if [[ ${KDE_BUILD_TYPE} != live || -n ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then for _lingua in ${KDE_LINGUAS}; do IUSE="${IUSE} linguas_${_lingua}" done |