diff options
author | Johannes Huber <johu@gentoo.org> | 2012-08-19 11:12:35 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-08-19 11:12:35 +0000 |
commit | 20c409a7ab9a22692db52d12bb242a830164ad97 (patch) | |
tree | 9acdba6e6ebeb6c1c6539f9f6b5e40d77a97593d /eclass/kde4-functions.eclass | |
parent | Keyword ~ppc ~ppc64, bug #417573 (diff) | |
download | historical-20c409a7ab9a22692db52d12bb242a830164ad97.tar.gz historical-20c409a7ab9a22692db52d12bb242a830164ad97.tar.bz2 historical-20c409a7ab9a22692db52d12bb242a830164ad97.zip |
Remove obsolete koffice handling. Simplify Qt minimal requirement. Remove
duplicated entry for unstable KDE SC releases in SRC_URI calculation. Arrange
docs example for KDE_LINGUAS alphabetically.
Diffstat (limited to 'eclass/kde4-functions.eclass')
-rw-r--r-- | eclass/kde4-functions.eclass | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index c4b9550db3ca..ff5fe307e320 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.60 2012/08/01 19:38:52 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.61 2012/08/19 11:12:35 johu Exp $ inherit versionator @@ -32,13 +32,10 @@ esac # @ECLASS-VARIABLE: KDEBASE # @DESCRIPTION: # This gets set to a non-zero value when a package is considered a kde or -# koffice ebuild. +# kdevelop ebuild. if [[ ${CATEGORY} = kde-base ]]; then debug-print "${ECLASS}: KDEBASE ebuild recognized" KDEBASE=kde-base -elif [[ ${KMNAME-${PN}} = koffice ]]; then - debug-print "${ECLASS}: KOFFICE ebuild recognized" - KDEBASE=koffice elif [[ ${KMNAME-${PN}} = kdevelop ]]; then debug-print "${ECLASS}: KDEVELOP ebuild recognized" KDEBASE=kdevelop @@ -92,7 +89,7 @@ esac # translations, ebuilds must call enable_selected_linguas(). kde4-{base,meta}.eclass does # this for you. # -# Example: KDE_LINGUAS="en_GB de nl" +# Example: KDE_LINGUAS="de en_GB nl" if [[ ${KDE_BUILD_TYPE} != live || -n ${KDE_LINGUAS_LIVE_OVERRIDE} ]]; then for _lingua in ${KDE_LINGUAS}; do IUSE="${IUSE} linguas_${_lingua}" |