| 1 |
# Copyright 2005-2009 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.58 2009/05/22 22:21:38 hwoarang Exp $ |
| 4 |
|
| 5 |
# @ECLASS: qt4.eclass |
| 6 |
# @MAINTAINER: |
| 7 |
# Ben de Groot <yngwin@gentoo.org>, |
| 8 |
# Markos Chandras <hwoarang@gentoo.org>, |
| 9 |
# Caleb Tennis <caleb@gentoo.org>, |
| 10 |
# Przemyslaw Maciag <troll@gentoo.org>, |
| 11 |
# Davide Pesavento <davidepesa@gmail.com> |
| 12 |
# @BLURB: Eclass for Qt4 packages |
| 13 |
# @DESCRIPTION: |
| 14 |
# This eclass contains various functions that may be useful |
| 15 |
# when dealing with packages using Qt4 libraries. |
| 16 |
|
| 17 |
inherit base eutils multilib toolchain-funcs versionator |
| 18 |
|
| 19 |
export XDG_CONFIG_HOME="${T}" |
| 20 |
|
| 21 |
qt4_monolithic_to_split_flag() { |
| 22 |
case ${1} in |
| 23 |
zlib) |
| 24 |
# Qt 4.4+ is always built with zlib enabled, so this flag isn't needed |
| 25 |
;; |
| 26 |
gif|jpeg|png) |
| 27 |
# qt-gui always installs with these enabled |
| 28 |
checkpkgs+=" x11-libs/qt-gui" |
| 29 |
;; |
| 30 |
dbus|opengl) |
| 31 |
# Make sure the qt-${1} package has been installed already |
| 32 |
checkpkgs+=" x11-libs/qt-${1}" |
| 33 |
;; |
| 34 |
qt3support) |
| 35 |
checkpkgs+=" x11-libs/qt-${1}" |
| 36 |
checkflags+=" x11-libs/qt-core:${1} x11-libs/qt-gui:${1} x11-libs/qt-sql:${1}" |
| 37 |
;; |
| 38 |
ssl) |
| 39 |
# qt-core controls this flag |
| 40 |
checkflags+=" x11-libs/qt-core:${1}" |
| 41 |
;; |
| 42 |
cups|mng|nas|nis|tiff|xinerama|input_devices_wacom) |
| 43 |
# qt-gui controls these flags |
| 44 |
checkflags+=" x11-libs/qt-gui:${1}" |
| 45 |
;; |
| 46 |
firebird|mysql|odbc|postgres|sqlite3) |
| 47 |
# qt-sql controls these flags. sqlite2 is no longer supported so it uses sqlite instead of sqlite3. |
| 48 |
checkflags+=" x11-libs/qt-sql:${1%3}" |
| 49 |
;; |
| 50 |
accessibility) |
| 51 |
eerror "(QA message): Use guiaccessibility and/or qt3accessibility to specify which of qt-gui and qt-qt3support are relevant for this package." |
| 52 |
# deal with this gracefully by checking the flag for what is available |
| 53 |
for y in gui qt3support; do |
| 54 |
has_version x11-libs/qt-${y} && checkflags+=" x11-libs/qt-${y}:${1}" |
| 55 |
done |
| 56 |
;; |
| 57 |
guiaccessibility) |
| 58 |
checkflags+=" x11-libs/qt-gui:accessibility" |
| 59 |
;; |
| 60 |
qt3accessibility) |
| 61 |
checkflags+=" x11-libs/qt-qt3support:accessibility" |
| 62 |
;; |
| 63 |
debug|doc|examples|glib|pch|sqlite|*) |
| 64 |
# packages probably shouldn't be checking these flags so we don't handle them currently |
| 65 |
eerror "qt4.eclass currently doesn't handle the use flag ${1} in QT4_BUILT_WITH_USE_CHECK for qt-4.4. This is either an" |
| 66 |
eerror "eclass bug or an ebuild bug. Please report it at http://bugs.gentoo.org/" |
| 67 |
((fatalerrors+=1)) |
| 68 |
;; |
| 69 |
esac |
| 70 |
} |
| 71 |
|
| 72 |
# @FUNCTION: qt4_pkg_setup |
| 73 |
# @DESCRIPTION: |
| 74 |
# Default pkg_setup function for packages that depends on qt4. If you have to |
| 75 |
# create ebuilds own pkg_setup in your ebuild, call qt4_pkg_setup in it. |
| 76 |
# This function uses two global vars from ebuild: |
| 77 |
# - QT4_BUILT_WITH_USE_CHECK - contains use flags that need to be turned on for |
| 78 |
# =x11-libs/qt-4* |
| 79 |
# - QT4_OPTIONAL_BUILT_WITH_USE_CHECK - qt4 flags that provides some |
| 80 |
# functionality, but can alternatively be disabled in ${CATEGORY}/${PN} |
| 81 |
# (so qt4 don't have to be recompiled) |
| 82 |
# |
| 83 |
# NOTE: Using the above vars is now deprecated in favor of eapi-2 use deps |
| 84 |
# |
| 85 |
# flags to watch for for Qt4.4: |
| 86 |
# zlib png | opengl dbus qt3support | sqlite3 ssl |
| 87 |
qt4_pkg_setup() { |
| 88 |
local x y checkpkgs checkflags fatalerrors=0 requiredflags="" |
| 89 |
|
| 90 |
# lots of has_version calls can be very expensive |
| 91 |
if [[ -n ${QT4_BUILT_WITH_USE_CHECK}${QT4_OPTIONAL_BUILT_WITH_USE_CHECK} ]]; then |
| 92 |
ewarn "QA notice: The QT4_BUILT_WITH_USE functionality is deprecated and" |
| 93 |
ewarn "will be removed from future versions of qt4.eclass. Please update" |
| 94 |
ewarn "the ebuild to use eapi-2 use dependencies instead." |
| 95 |
has_version x11-libs/qt-core && local QT44=true |
| 96 |
fi |
| 97 |
|
| 98 |
for x in ${QT4_BUILT_WITH_USE_CHECK}; do |
| 99 |
if [[ -n ${QT44} ]]; then |
| 100 |
# The use flags are different in 4.4 and above, and it's split packages, so this is used to catch |
| 101 |
# the various use flag combos specified in the ebuilds to make sure we don't error out for no reason. |
| 102 |
qt4_monolithic_to_split_flag ${x} |
| 103 |
else |
| 104 |
[[ ${x} == *accessibility ]] && x=${x#gui} && x=${x#qt3} |
| 105 |
if ! built_with_use =x11-libs/qt-4* ${x}; then |
| 106 |
requiredflags="${requiredflags} ${x}" |
| 107 |
fi |
| 108 |
fi |
| 109 |
done |
| 110 |
|
| 111 |
local optionalflags="" |
| 112 |
for x in ${QT4_OPTIONAL_BUILT_WITH_USE_CHECK}; do |
| 113 |
if use ${x}; then |
| 114 |
if [[ -n ${QT44} ]]; then |
| 115 |
# The use flags are different in 4.4 and above, and it's split packages, so this is used to catch |
| 116 |
# the various use flag combos specified in the ebuilds to make sure we don't error out for no reason. |
| 117 |
qt4_monolithic_to_split_flag ${x} |
| 118 |
elif ! built_with_use =x11-libs/qt-4* ${x}; then |
| 119 |
optionalflags="${optionalflags} ${x}" |
| 120 |
fi |
| 121 |
fi |
| 122 |
done |
| 123 |
|
| 124 |
# The use flags are different in 4.4 and above, and it's split packages, so this is used to catch |
| 125 |
# the various use flag combos specified in the ebuilds to make sure we don't error out for no reason. |
| 126 |
for y in ${checkpkgs}; do |
| 127 |
if ! has_version ${y}; then |
| 128 |
eerror "You must first install the ${y} package. It should be added to the dependencies for this package (${CATEGORY}/${PN}). See bug #217161." |
| 129 |
((fatalerrors+=1)) |
| 130 |
fi |
| 131 |
done |
| 132 |
for y in ${checkflags}; do |
| 133 |
if ! has_version ${y%:*}; then |
| 134 |
eerror "You must first install the ${y%:*} package with the ${y##*:} flag enabled." |
| 135 |
eerror "It should be added to the dependencies for this package (${CATEGORY}/${PN}). See bug #217161." |
| 136 |
((fatalerrors+=1)) |
| 137 |
else |
| 138 |
if ! built_with_use ${y%:*} ${y##*:}; then |
| 139 |
eerror "You must first install the ${y%:*} package with the ${y##*:} flag enabled." |
| 140 |
((fatalerrors+=1)) |
| 141 |
fi |
| 142 |
fi |
| 143 |
done |
| 144 |
|
| 145 |
local diemessage="" |
| 146 |
if [[ ${fatalerrors} -ne 0 ]]; then |
| 147 |
diemessage="${fatalerrors} fatal errors were detected. Please read the above error messages and act accordingly." |
| 148 |
fi |
| 149 |
if [[ -n ${requiredflags} ]]; then |
| 150 |
eerror |
| 151 |
eerror "(1) In order to compile ${CATEGORY}/${PN} first you need to build" |
| 152 |
eerror "=x11-libs/qt-4* with USE=\"${requiredflags}\" flag(s)" |
| 153 |
eerror |
| 154 |
diemessage="(1) recompile qt4 with \"${requiredflags}\" USE flag(s) ; " |
| 155 |
fi |
| 156 |
if [[ -n ${optionalflags} ]]; then |
| 157 |
eerror |
| 158 |
eerror "(2) You are trying to compile ${CATEGORY}/${PN} package with" |
| 159 |
eerror "USE=\"${optionalflags}\"" |
| 160 |
eerror "while qt4 is built without this particular flag(s): it will" |
| 161 |
eerror "not work." |
| 162 |
eerror |
| 163 |
eerror "Possible solutions to this problem are:" |
| 164 |
eerror "a) install package ${CATEGORY}/${PN} without \"${optionalflags}\" USE flag(s)" |
| 165 |
eerror "b) re-emerge qt4 with \"${optionalflags}\" USE flag(s)" |
| 166 |
eerror |
| 167 |
diemessage="${diemessage}(2) recompile qt4 with \"${optionalflags}\" USE flag(s) or disable them for ${PN} package\n" |
| 168 |
fi |
| 169 |
|
| 170 |
[[ -n ${diemessage} ]] && die "can't install ${CATEGORY}/${PN}: ${diemessage}" |
| 171 |
} |
| 172 |
|
| 173 |
# @ECLASS-VARIABLE: PATCHES |
| 174 |
# @DESCRIPTION: |
| 175 |
# In case you have patches to apply, specify them in the PATCHES variable. |
| 176 |
# Make sure to specify the full path. This variable is necessary for the |
| 177 |
# src_prepare phase. |
| 178 |
# example: |
| 179 |
# PATCHES="${FILESDIR}/mypatch.patch |
| 180 |
# ${FILESDIR}/mypatch2.patch" |
| 181 |
# |
| 182 |
# @FUNCTION: qt4_src_prepare |
| 183 |
# @DESCRIPTION: |
| 184 |
# Default src_prepare function for packages that depend on qt4. If you have to |
| 185 |
# override src_prepare in your ebuild, you should call qt4_src_prepare in it, |
| 186 |
# otherwise autopatcher will not work! |
| 187 |
qt4_src_prepare() { |
| 188 |
debug-print-function $FUNCNAME "$@" |
| 189 |
base_src_prepare |
| 190 |
} |
| 191 |
|
| 192 |
# @FUNCTION: eqmake4 |
| 193 |
# @USAGE: [.pro file] [additional parameters to qmake] |
| 194 |
# @DESCRIPTION: |
| 195 |
# Runs qmake on the specified .pro file (defaults to ${PN}.pro if called |
| 196 |
# without arguments). Additional parameters are appended unmodified to |
| 197 |
# qmake command line. For recursive build systems, i.e. those based on |
| 198 |
# the subdirs template, you should run eqmake4 on the top-level project |
| 199 |
# file only, unless you have strong reasons to do things differently. |
| 200 |
# During the building, qmake will be automatically re-invoked with the |
| 201 |
# right arguments on every directory specified inside the top-level |
| 202 |
# project file by the SUBDIRS variable. |
| 203 |
eqmake4() { |
| 204 |
local projectfile="${1:-${PN}.pro}" |
| 205 |
shift |
| 206 |
|
| 207 |
if [[ ! -f ${projectfile} ]]; then |
| 208 |
echo |
| 209 |
eerror "Project file '${projectfile#${WORKDIR}/}' does not exists!" |
| 210 |
eerror "eqmake4 cannot handle non-existing project files." |
| 211 |
eerror |
| 212 |
eerror "This shouldn't happen - please send a bug report to http://bugs.gentoo.org/" |
| 213 |
echo |
| 214 |
die "Project file not found in ${CATEGORY}/${PN} sources." |
| 215 |
fi |
| 216 |
|
| 217 |
ebegin "Running qmake on ${projectfile}" |
| 218 |
|
| 219 |
# make sure CONFIG variable is correctly set for both release and debug builds |
| 220 |
local CONFIG_ADD="release" |
| 221 |
local CONFIG_REMOVE="debug" |
| 222 |
if has debug ${IUSE} && use debug; then |
| 223 |
CONFIG_ADD="debug" |
| 224 |
CONFIG_REMOVE="release" |
| 225 |
fi |
| 226 |
local awkscript='BEGIN { |
| 227 |
printf "### eqmake4 was here ###\n" > file; |
| 228 |
fixed=0; |
| 229 |
} |
| 230 |
/^[[:blank:]]*CONFIG[[:blank:]]*[\+\*]?=/ { |
| 231 |
for (i=1; i <= NF; i++) { |
| 232 |
if ($i ~ rem || $i ~ /debug_and_release/) |
| 233 |
{ $i=add; fixed=1; } |
| 234 |
} |
| 235 |
} |
| 236 |
/^[[:blank:]]*CONFIG[[:blank:]]*-=/ { |
| 237 |
for (i=1; i <= NF; i++) { |
| 238 |
if ($i ~ add) { $i=rem; fixed=1; } |
| 239 |
} |
| 240 |
} |
| 241 |
{ |
| 242 |
print >> file; |
| 243 |
} |
| 244 |
END { |
| 245 |
printf "\nCONFIG -= debug_and_release %s\n", rem >> file; |
| 246 |
printf "CONFIG += %s\n", add >> file; |
| 247 |
print fixed; |
| 248 |
}' |
| 249 |
local filepath= |
| 250 |
while read filepath; do |
| 251 |
local file="${filepath#./}" |
| 252 |
grep -q '^### eqmake4 was here ###$' "${file}" && continue |
| 253 |
local retval=$({ |
| 254 |
rm -f "${file}" || echo "FAILED" |
| 255 |
awk -v file="${file}" -- "${awkscript}" add=${CONFIG_ADD} rem=${CONFIG_REMOVE} || echo "FAILED" |
| 256 |
} < "${file}") |
| 257 |
if [[ ${retval} == 1 ]]; then |
| 258 |
einfo " Fixed CONFIG in ${file}" |
| 259 |
elif [[ ${retval} != 0 ]]; then |
| 260 |
eerror " An error occurred while processing ${file}" |
| 261 |
die "eqmake4 failed to process '${file}'." |
| 262 |
fi |
| 263 |
done < <(find "$(dirname "${projectfile}")" -type f -name "*.pr[io]" 2>/dev/null) |
| 264 |
|
| 265 |
/usr/bin/qmake -makefile -nocache \ |
| 266 |
QTDIR=/usr/$(get_libdir) \ |
| 267 |
QMAKE=/usr/bin/qmake \ |
| 268 |
QMAKE_CC=$(tc-getCC) \ |
| 269 |
QMAKE_CXX=$(tc-getCXX) \ |
| 270 |
QMAKE_LINK=$(tc-getCXX) \ |
| 271 |
QMAKE_CFLAGS_RELEASE="${CFLAGS}" \ |
| 272 |
QMAKE_CFLAGS_DEBUG="${CFLAGS}" \ |
| 273 |
QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" \ |
| 274 |
QMAKE_CXXFLAGS_DEBUG="${CXXFLAGS}" \ |
| 275 |
QMAKE_LFLAGS_RELEASE="${LDFLAGS}" \ |
| 276 |
QMAKE_LFLAGS_DEBUG="${LDFLAGS}" \ |
| 277 |
QMAKE_STRIP= \ |
| 278 |
"${projectfile}" "${@}" |
| 279 |
|
| 280 |
eend $? |
| 281 |
|
| 282 |
# was qmake successful? |
| 283 |
if [[ $? -ne 0 ]]; then |
| 284 |
echo |
| 285 |
eerror "Running qmake on '${projectfile#${WORKDIR}/}' has failed!" |
| 286 |
eerror "This shouldn't happen - please send a bug report to http://bugs.gentoo.org/" |
| 287 |
echo |
| 288 |
die "qmake failed on '${projectfile}'." |
| 289 |
fi |
| 290 |
|
| 291 |
return 0 |
| 292 |
} |
| 293 |
|
| 294 |
case ${EAPI:-0} in |
| 295 |
2) |
| 296 |
EXPORT_FUNCTIONS pkg_setup src_prepare |
| 297 |
;; |
| 298 |
0|1) |
| 299 |
EXPORT_FUNCTIONS pkg_setup |
| 300 |
;; |
| 301 |
esac |