summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2001-12-11 20:41:03 +0000
committerDan Armak <danarmak@gentoo.org>2001-12-11 20:41:03 +0000
commit8e007d4391bdf38f483eb33cd84b3a0cd5b58127 (patch)
tree77b3f74df2d7d7431bb0ca6e1cf34d520a973394 /eclass/kde-dist.eclass
parentremoved bad old version (which shuoldn't have existed, strange) and added new... (diff)
downloadgentoo-2-8e007d4391bdf38f483eb33cd84b3a0cd5b58127.tar.gz
gentoo-2-8e007d4391bdf38f483eb33cd84b3a0cd5b58127.tar.bz2
gentoo-2-8e007d4391bdf38f483eb33cd84b3a0cd5b58127.zip
--enable-final fixes: seems many non-base kde apps don't suport it, and get compile errors abut all
sorts of illegal redefines and redeclarations. Figures. Anyway, I'm moving --enable-final to kde-dist (and *-i18n) eclasses, the regular kde apps inheriting from kde-base don't get it. to get it, put it into myconf the regular way or, (new) before the functions say myconf=$"myconf --enable-final" (or anything else), this is a nice new weay of extending myconf. over the next few days ill test all kde apps for enable-final compatibility and add the flag to those that support it.
Diffstat (limited to 'eclass/kde-dist.eclass')
-rw-r--r--eclass/kde-dist.eclass6
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/kde-dist.eclass b/eclass/kde-dist.eclass
index 2f8c7ce127b9..c3b995efc963 100644
--- a/eclass/kde-dist.eclass
+++ b/eclass/kde-dist.eclass
@@ -1,7 +1,7 @@
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dist.eclass,v 1.4 2001/11/16 12:50:41 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde-dist.eclass,v 1.5 2001/12/11 20:41:03 danarmak Exp $
# This is the kde-dist eclass for >=2.2.1 kde base packages. Don't use for kdelibs though :-)
# Don't use it for e.g. kdevelop, koffice because of their separate versionnig schemes.
inherit kde-base kde.org || die
@@ -10,4 +10,6 @@ ECLASS=kde-dist
DESCRIPTION="KDE ${PV} - "
HOMEPAGE="http://www.kde.org/"
-need-kdelibs ${PV} \ No newline at end of file
+need-kdelibs ${PV}
+
+myconf="$myconf --enable-final"