# 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.18 2007/06/20 11:57:28 caleb Exp $ # # Author Caleb Tennis # # This eclass is simple. Inherit it, and in your depend, do something like this: # # DEPEND="$(qt4_min_version 4)" # # 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 inherit versionator eutils QTPKG="x11-libs/qt-" QT4MAJORVERSIONS="4.3 4.2 4.1 4.0" QT4VERSIONS="4.3.0 4.3.0_rc1 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" qt4_min_version() { echo "|| (" qt4_min_version_list "$@" echo ")" } qt4_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|4.2|4.2.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}" } EXPORT_FUNCTIONS pkg_setup qt4_pkg_setup() { for x in $QT4_BUILT_WITH_USE_CHECK; do if ! built_with_use =x11-libs/qt-4* $x; then die "This package requires Qt4 to be built with the ${x} use flag." fi done }