diff options
author | Caleb Tennis <caleb@gentoo.org> | 2005-06-30 13:23:16 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2005-06-30 13:23:16 +0000 |
commit | a1fcb3571b255b2c3c1f23fa1e7f09dd1629e65e (patch) | |
tree | bde99ece9bc48f380ec9673f1cf635b75467d312 /eclass | |
parent | To ~sparc wrt #97482 (diff) | |
download | historical-a1fcb3571b255b2c3c1f23fa1e7f09dd1629e65e.tar.gz historical-a1fcb3571b255b2c3c1f23fa1e7f09dd1629e65e.tar.bz2 historical-a1fcb3571b255b2c3c1f23fa1e7f09dd1629e65e.zip |
Initial import of new versioning handler for ebuilds which need Qt
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt.eclass | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/eclass/qt.eclass b/eclass/qt.eclass new file mode 100644 index 000000000000..36b91be61bd6 --- /dev/null +++ b/eclass/qt.eclass @@ -0,0 +1,50 @@ +# Copyright 2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/eclass/qt.eclass,v 1.1 2005/06/30 13:23:16 caleb Exp $ +# +# Author Caleb Tennis <caleb@gentoo.org> +# +# If you inherit this class, it assumes that you want to make sure the user has a version of Qt3 +# installed. The logic is as follows: +# +# Currently, it forces a dependency on any Qt3 version. If the ebuild also sets the version directly, then +# both should be in effect. + +inherit versionator + +ECLASS=qt +INHERITED="$INHERITED $ECLASS" + +QTPKG="x11-libs/qt-" +QT3VERSIONS="3.3.4-r5 3.3.4-r4 3.3.4-r3 3.3.4-r2 3.3.4-r1 qt-3.3.4 3.3.3-r3 3.3.3-r2 3.3.3-r1 3.3.3 3.3.2 3.3.1-r2 3.3.1-r1 3.3.1 3.3.0-r1 3.3.0 3.2.3-r1 3.2.3 3.2.2-r1 3.2.2 3.2.1-r2 3.2.1-r1 3.2.1 3.2.0 3.1.2-r4 3.1.2-r3 3.1.2-r2 3.1.2-r1 3.1.2 3.1.1-r2 3.1.1-r1 3.1.1 3.1.0-r3 3.1.0-r2 3.1.0-r1 3.1.0" + +qt3_min_version() { + echo -n "|| ( " + qt3_min_version_list $@ + echo " )" +} + +qt3_min_version_list() { + local MINVER=$1 + local VERSIONS="" + + case $MINVER in + 3) VERSIONS="${QTPKG}3*";; + 3.0) VERSIONS="${QTPKG}3*";; + 3.0.0) VERSIONS="${QTPKG}3*";; + *) + for x in $QT3VERSIONS; do + if $(version_is_at_least $MINVER $x); then + VERSIONS="${VERSIONS} =${QTPKG}${x}" + fi + done + ;; + esac + + echo -n $VERSIONS +} + +qt3_min_version 3.0.0 +qt3_min_version 3.3 +qt3_min_version 3.0.5 +qt3_min_version 3.1.2-r3 |