diff options
author | Maciej Mrozowski <reavertm@gentoo.org> | 2010-05-15 15:19:04 +0000 |
---|---|---|
committer | Maciej Mrozowski <reavertm@gentoo.org> | 2010-05-15 15:19:04 +0000 |
commit | 8ea4369d659517d283bd38f1210d605862b50d35 (patch) | |
tree | 93ce344a92eb78240f0e8540adb9d4effa3bbd92 /eclass/kde4-functions.eclass | |
parent | Prevent people from doing silly things by forcing correct slot of libpng for ... (diff) | |
download | historical-8ea4369d659517d283bd38f1210d605862b50d35.tar.gz historical-8ea4369d659517d283bd38f1210d605862b50d35.tar.bz2 historical-8ea4369d659517d283bd38f1210d605862b50d35.zip |
Sync eclasses from kde overlay.
- kdevelop ebuils support
- cmake-2.6.4 needed for KDE SC 4.5
- crosscompilation fixes
- fix README's installation
- pre-release koffice support
Diffstat (limited to 'eclass/kde4-functions.eclass')
-rw-r--r-- | eclass/kde4-functions.eclass | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index 71911489675d..f627efa7b033 100644 --- a/eclass/kde4-functions.eclass +++ b/eclass/kde4-functions.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.30 2010/02/02 14:20:16 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.31 2010/05/15 15:19:04 reavertm Exp $ inherit versionator @@ -25,16 +25,15 @@ esac # @DESCRIPTION: # This gets set to a non-zero value when a package is considered a kde or # koffice ebuild. - if [[ ${CATEGORY} = kde-base ]]; then debug-print "${ECLASS}: KDEBASE ebuild recognized" KDEBASE=kde-base -fi - -# is this a koffice ebuild? -if [[ ${KMNAME} = koffice || ${PN} = koffice ]]; then +elif [[ ${KMNAME} = koffice || ${PN} = koffice ]]; then debug-print "${ECLASS}: KOFFICE ebuild recognized" KDEBASE=koffice +elif [[ ${KMNAME} = kdevelop ]]; then + debug-print "${ECLASS}: KDEVELOP ebuild recognized" + KDEBASE="kdevelop" fi # @ECLASS-VARIABLE: KDE_SLOTS |