blob: f2e1265bc900360e7d0a6c01ceff6a5642eb2423 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# 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.2 2006/05/08 11:13:57 caleb Exp $
#
# Author Caleb Tennis <caleb@gentoo.org>
#
# This eclass is simple. Inherit it, and in your depend, do something like this:
#
# DEPEND="$(qt_min_version 4)"
#
# and it handles the rest for you
#
inherit versionator
QTPKG="x11-libs/qt-"
QT4MAJORVERSIONS="4.1 4.0"
QT4VERSIONS="4.1.2 4.1.1 4.1.0 4.0.1 4.0.0"
qt_min_version() {
echo "|| ("
qt_min_version_list "$@"
echo ")"
}
qt_min_version_list() {
local MINVER="$1"
local VERSIONS=""
case "${MINVER}" in
4|4.0|4.0.0) VERSIONS="=${QTPKG}4*";;
4.1|4.1.0)
for x in ${QT4MAJORVERSIONS}; do
if $(version_is_at_least "${MINVER}" "${x}"); then
VERSIONS="${VERSIONS} =${QTPKG}${x}*"
fi
done
;;
4*)
for x in ${QT4VERSIONS}; do
if $(version_is_at_least "${MINVER}" "${x}"); then
VERSIONS="${VERSIONS} =${QTPKG}${x}"
fi
done
;;
*) VERSIONS="=${QTPKG}4*";;
esac
echo "${VERSIONS}"
}
|