diff options
author | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-02-19 00:31:12 +0000 |
---|---|---|
committer | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-02-19 00:31:12 +0000 |
commit | 8e4b2f49a30d9677defcf490c618c5c7b842b2f4 (patch) | |
tree | 5ecacf91ee7dbb64b95f6ad7c52529ed062b1109 /eclass/kde-functions.eclass | |
parent | Version bump. (diff) | |
download | historical-8e4b2f49a30d9677defcf490c618c5c7b842b2f4.tar.gz historical-8e4b2f49a30d9677defcf490c618c5c7b842b2f4.tar.bz2 historical-8e4b2f49a30d9677defcf490c618c5c7b842b2f4.zip |
kde-functions.eclass: Kill need-auto{conf,make}, bug 148719, labelled as "don't use" for 1,5 year now...
Diffstat (limited to 'eclass/kde-functions.eclass')
-rw-r--r-- | eclass/kde-functions.eclass | 35 |
1 files changed, 1 insertions, 34 deletions
diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass index 7fe445947bcc..502dedb05524 100644 --- a/eclass/kde-functions.eclass +++ b/eclass/kde-functions.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.164 2008/02/14 19:17:30 ingmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.165 2008/02/19 00:31:12 ingmar Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -350,39 +350,6 @@ $KDE_DERIVATION_MAP EOF return 1 } -# convinience functions for requesting autotools versions -need-automake() { - - debug-print-function $FUNCNAME $* - - echo "Please don't use need-automake function anymore, see bug #148719." - - unset WANT_AUTOMAKE - - case $1 in - 1.4) export WANT_AUTOMAKE=1.4;; - 1.5) export WANT_AUTOMAKE=1.5;; - 1.6) export WANT_AUTOMAKE=1.6;; - 1.7) export WANT_AUTOMAKE='1.7';; - *) echo "!!! $FUNCNAME: Error: unrecognized automake version $1 requested";; - esac - -} - -need-autoconf() { - - debug-print-function $FUNCNAME $* - - echo "Please don't use need-autoconf function anymore, see bug #148719." - - unset WANT_AUTOCONF - case $1 in - 2.1) export WANT_AUTOCONF=2.1;; - 2.5) export WANT_AUTOCONF=2.5;; - *) echo "!!! $FUNCNAME: Error: unrecognized autoconf version $1 requested";; - esac - -} # Usage: deprange minver maxver package [...] # For minver, a -rN part is supported. For both minver and maxver, _alpha/beta/pre/rc suffixes |