summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>2008-10-04 15:28:58 +0000
committerJorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>2008-10-04 15:28:58 +0000
commit2c27793a001257ac985b4e2f42927369ec767aa8 (patch)
treefc540ab0e5f2434f0ce4599859936e8504f5b7df /eclass/kde-functions.eclass
parentUnmask libbonobo-2.22 and newer where it is masked, as it should work fine on... (diff)
downloadgentoo-2-2c27793a001257ac985b4e2f42927369ec767aa8.tar.gz
gentoo-2-2c27793a001257ac985b4e2f42927369ec767aa8.tar.bz2
gentoo-2-2c27793a001257ac985b4e2f42927369ec767aa8.zip
Updated kde-functions eclass to install media-libs/libkipi, media-libs/libkdcraw and media-libs/libkexiv2 out of /usr
and into kde-3.5 prefix (/usr/kde/3.5). Thanks to Jan Kundrát (jkt) for the patch. It's the first part to fix bug 239282.
Diffstat (limited to 'eclass/kde-functions.eclass')
-rw-r--r--eclass/kde-functions.eclass7
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass
index db265a188396..9864073d983e 100644
--- a/eclass/kde-functions.eclass
+++ b/eclass/kde-functions.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.170 2008/08/27 15:29:26 carlo Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.171 2008/10/04 15:28:58 jmbsvicetto Exp $
# @ECLASS: kde-functions.eclass
# @MAINTAINER:
@@ -718,7 +718,10 @@ set-kdedir() {
export PREFIX="$KDEPREFIX"
else
if [[ -z "$KDEBASE" ]]; then
- export PREFIX="/usr"
+ case $PN in
+ libkipi|libkdcraw|libkexiv2) export PREFIX="/usr/kde/3.5";;
+ *) export PREFIX="/usr";;
+ esac
else
case $KDEMAJORVER.$KDEMINORVER in
3.5) export PREFIX="/usr/kde/3.5";;