summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2005-07-25 14:53:25 +0000
committerCaleb Tennis <caleb@gentoo.org>2005-07-25 14:53:25 +0000
commit4c01610af5eb67e6a5c5e7502ff4fa6f3afafc27 (patch)
tree003e5e7c62fae0112619ffd7842adc7acf150103 /eclass/qt3.eclass
parentAdd altivec to STAGE1_USE for 970 64bit userland. (diff)
downloadhistorical-4c01610af5eb67e6a5c5e7502ff4fa6f3afafc27.tar.gz
historical-4c01610af5eb67e6a5c5e7502ff4fa6f3afafc27.tar.bz2
historical-4c01610af5eb67e6a5c5e7502ff4fa6f3afafc27.zip
Remove qt4 handling and make the default case more graceful
Diffstat (limited to 'eclass/qt3.eclass')
-rw-r--r--eclass/qt3.eclass14
1 files changed, 2 insertions, 12 deletions
diff --git a/eclass/qt3.eclass b/eclass/qt3.eclass
index e54e940758de..bd07060a3135 100644
--- a/eclass/qt3.eclass
+++ b/eclass/qt3.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/qt3.eclass,v 1.6 2005/07/25 14:50:47 caleb Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/qt3.eclass,v 1.7 2005/07/25 14:53:25 caleb Exp $
#
# Author Caleb Tennis <caleb@gentoo.org>
#
@@ -46,7 +46,6 @@ qt_min_version_list() {
fi
done
;;
- 4|4.0|4.0.0) VERSIONS="=${QTPKG}4*";;
3*)
for x in $QT3VERSIONS; do
if $(version_is_at_least $MINVER $x); then
@@ -54,16 +53,7 @@ qt_min_version_list() {
fi
done
;;
- 4*)
- for x in $QT4VERSIONS; do
- if $(version_is_at_least $MINVER $x); then
- VERSIONS="${VERSIONS} =${QTPKG}${x}"
- fi
- done
- ;;
- *)
- die "qt_min_version called with invalid parameter: \"$1\""
- ;;
+ *) VERSIONS="=${QTPKG}3*";;
esac
echo "$VERSIONS"