diff options
author | 2006-08-16 12:20:15 +0000 | |
---|---|---|
committer | 2006-08-16 12:20:15 +0000 | |
commit | 03a3509506304512831ccab4059146aa64e68a75 (patch) | |
tree | 371ef6fed8f76b6d47cd062e5ccd8e9331291fbc /eclass/qt4.eclass | |
parent | amd64 stable (diff) | |
download | historical-03a3509506304512831ccab4059146aa64e68a75.tar.gz historical-03a3509506304512831ccab4059146aa64e68a75.tar.bz2 historical-03a3509506304512831ccab4059146aa64e68a75.zip |
Rename eclass functions
Diffstat (limited to 'eclass/qt4.eclass')
-rw-r--r-- | eclass/qt4.eclass | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/eclass/qt4.eclass b/eclass/qt4.eclass index ebcfc99cdfaf..16c46aceb103 100644 --- a/eclass/qt4.eclass +++ b/eclass/qt4.eclass @@ -1,6 +1,6 @@ # Copyright 2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.3 2006/06/22 19:53:21 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.4 2006/08/16 12:20:15 caleb Exp $ # # Author Caleb Tennis <caleb@gentoo.org> # @@ -10,6 +10,8 @@ # # and it handles the rest for you # +# 08.16.06 - Renamed qt_min_* to qt4_min_* to avoid conflicts with the qt3 eclass. +# - Caleb Tennis <caleb@gentoo.org> inherit versionator @@ -17,13 +19,13 @@ QTPKG="x11-libs/qt-" QT4MAJORVERSIONS="4.1 4.0" QT4VERSIONS="4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.0.1 4.0.0" -qt_min_version() { +qt4_min_version() { echo "|| (" - qt_min_version_list "$@" + qt4_min_version_list "$@" echo ")" } -qt_min_version_list() { +qt4_min_version_list() { local MINVER="$1" local VERSIONS="" |