| 1 | # Copyright 2005 Gentoo Foundation |
1 | # Copyright 2005 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/qt4.eclass,v 1.2 2006/05/08 11:13:57 caleb Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/qt4.eclass,v 1.13 2007/05/02 15:58:23 genstef Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Caleb Tennis <caleb@gentoo.org> |
5 | # Author Caleb Tennis <caleb@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is simple. Inherit it, and in your depend, do something like this: |
7 | # This eclass is simple. Inherit it, and in your depend, do something like this: |
| 8 | # |
8 | # |
| 9 | # DEPEND="$(qt_min_version 4)" |
9 | # DEPEND="$(qt4_min_version 4)" |
| 10 | # |
10 | # |
| 11 | # and it handles the rest for you |
11 | # and it handles the rest for you |
| 12 | # |
12 | # |
|
|
13 | # 08.16.06 - Renamed qt_min_* to qt4_min_* to avoid conflicts with the qt3 eclass. |
|
|
14 | # - Caleb Tennis <caleb@gentoo.org> |
| 13 | |
15 | |
| 14 | inherit versionator |
16 | inherit versionator |
| 15 | |
17 | |
| 16 | QTPKG="x11-libs/qt-" |
18 | QTPKG="x11-libs/qt-" |
| 17 | QT4MAJORVERSIONS="4.1 4.0" |
19 | QT4MAJORVERSIONS="4.3 4.2 4.1 4.0" |
| 18 | QT4VERSIONS="4.1.2 4.1.1 4.1.0 4.0.1 4.0.0" |
20 | QT4VERSIONS="4.3.0_beta1 4.2.3-r1 4.2.3 4.2.2 4.2.1 4.2.0-r2 4.2.0-r1 4.2.0 4.1.4-r2 4.1.4-r1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.0.1 4.0.0" |
| 19 | |
21 | |
| 20 | qt_min_version() { |
22 | qt4_min_version() { |
| 21 | echo "|| (" |
23 | echo "|| (" |
| 22 | qt_min_version_list "$@" |
24 | qt4_min_version_list "$@" |
| 23 | echo ")" |
25 | echo ")" |
| 24 | } |
26 | } |
| 25 | |
27 | |
| 26 | qt_min_version_list() { |
28 | qt4_min_version_list() { |
| 27 | local MINVER="$1" |
29 | local MINVER="$1" |
| 28 | local VERSIONS="" |
30 | local VERSIONS="" |
| 29 | |
31 | |
| 30 | case "${MINVER}" in |
32 | case "${MINVER}" in |
| 31 | 4|4.0|4.0.0) VERSIONS="=${QTPKG}4*";; |
33 | 4|4.0|4.0.0) VERSIONS="=${QTPKG}4*";; |
| 32 | 4.1|4.1.0) |
34 | 4.1|4.1.0|4.2|4.2.0) |
| 33 | for x in ${QT4MAJORVERSIONS}; do |
35 | for x in ${QT4MAJORVERSIONS}; do |
| 34 | if $(version_is_at_least "${MINVER}" "${x}"); then |
36 | if $(version_is_at_least "${MINVER}" "${x}"); then |
| 35 | VERSIONS="${VERSIONS} =${QTPKG}${x}*" |
37 | VERSIONS="${VERSIONS} =${QTPKG}${x}*" |
| 36 | fi |
38 | fi |
| 37 | done |
39 | done |