| 1 | # Copyright 1999-2012 Gentoo Foundation |
1 | # Copyright 1999-2012 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/qt4-r2.eclass,v 1.20 2012/04/19 22:43:40 pesa Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-r2.eclass,v 1.21 2012/07/23 12:53:13 yngwin Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-r2.eclass |
5 | # @ECLASS: qt4-r2.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Qt herd <qt@gentoo.org> |
7 | # Qt herd <qt@gentoo.org> |
| 8 | # @BLURB: Eclass for Qt4-based packages, second edition. |
8 | # @BLURB: Eclass for Qt4-based packages, second edition. |
| … | |
… | |
| 16 | esac |
16 | esac |
| 17 | |
17 | |
| 18 | inherit base eutils multilib toolchain-funcs |
18 | inherit base eutils multilib toolchain-funcs |
| 19 | |
19 | |
| 20 | export XDG_CONFIG_HOME="${T}" |
20 | export XDG_CONFIG_HOME="${T}" |
|
|
21 | |
|
|
22 | # @ECLASS-VARIABLE: DOCS |
|
|
23 | # @DEFAULT_UNSET |
|
|
24 | # @DESCRIPTION: |
|
|
25 | # Array containing documents passed to dodoc command. |
|
|
26 | # Paths can be absolute or relative to ${S}. |
|
|
27 | # |
|
|
28 | # Example: DOCS=( ChangeLog README "${WORKDIR}/doc_folder/" ) |
|
|
29 | |
|
|
30 | # @ECLASS-VARIABLE: HTML_DOCS |
|
|
31 | # @DEFAULT_UNSET |
|
|
32 | # @DESCRIPTION: |
|
|
33 | # Array containing documents passed to dohtml command. |
|
|
34 | # Paths can be absolute or relative to ${S}. |
|
|
35 | # |
|
|
36 | # Example: HTML_DOCS=( "doc/document.html" "${WORKDIR}/html_folder/" ) |
| 21 | |
37 | |
| 22 | # @ECLASS-VARIABLE: LANGS |
38 | # @ECLASS-VARIABLE: LANGS |
| 23 | # @DEFAULT_UNSET |
39 | # @DEFAULT_UNSET |
| 24 | # @DESCRIPTION: |
40 | # @DESCRIPTION: |
| 25 | # In case your Qt4 application provides various translations, use this variable |
41 | # In case your Qt4 application provides various translations, use this variable |
| … | |
… | |
| 42 | for x in ${LANGSLONG}; do |
58 | for x in ${LANGSLONG}; do |
| 43 | IUSE+=" linguas_${x%_*}" |
59 | IUSE+=" linguas_${x%_*}" |
| 44 | done |
60 | done |
| 45 | unset x |
61 | unset x |
| 46 | |
62 | |
|
|
63 | # @ECLASS-VARIABLE: PATCHES |
|
|
64 | # @DEFAULT_UNSET |
|
|
65 | # @DESCRIPTION: |
|
|
66 | # Array variable containing all the patches to be applied. This variable |
|
|
67 | # is expected to be defined in the global scope of ebuilds. Make sure to |
|
|
68 | # specify the full path. This variable is used in src_prepare phase. |
|
|
69 | # |
|
|
70 | # Example: |
|
|
71 | # @CODE |
|
|
72 | # PATCHES=( |
|
|
73 | # "${FILESDIR}/mypatch.patch" |
|
|
74 | # "${FILESDIR}/mypatch2.patch" |
|
|
75 | # ) |
|
|
76 | # @CODE |
|
|
77 | |
| 47 | # @FUNCTION: qt4-r2_src_unpack |
78 | # @FUNCTION: qt4-r2_src_unpack |
| 48 | # @DESCRIPTION: |
79 | # @DESCRIPTION: |
| 49 | # Default src_unpack function for packages that depend on qt4. If you have to |
80 | # Default src_unpack function for packages that depend on qt4. If you have to |
| 50 | # override src_unpack in your ebuild (probably you don't need to), call |
81 | # override src_unpack in your ebuild (probably you don't need to), call |
| 51 | # qt4-r2_src_unpack in it. |
82 | # qt4-r2_src_unpack in it. |
| … | |
… | |
| 53 | debug-print-function $FUNCNAME "$@" |
84 | debug-print-function $FUNCNAME "$@" |
| 54 | |
85 | |
| 55 | base_src_unpack "$@" |
86 | base_src_unpack "$@" |
| 56 | } |
87 | } |
| 57 | |
88 | |
| 58 | # @ECLASS-VARIABLE: PATCHES |
|
|
| 59 | # @DEFAULT_UNSET |
|
|
| 60 | # @DESCRIPTION: |
|
|
| 61 | # In case you have patches to apply, specify them here. Make sure to |
|
|
| 62 | # specify the full path. This variable is used in src_prepare phase. |
|
|
| 63 | # Example: |
|
|
| 64 | # @CODE |
|
|
| 65 | # PATCHES=( "${FILESDIR}"/mypatch.patch |
|
|
| 66 | # "${FILESDIR}"/mypatch2.patch ) |
|
|
| 67 | # @CODE |
|
|
| 68 | |
|
|
| 69 | # @FUNCTION: qt4-r2_src_prepare |
89 | # @FUNCTION: qt4-r2_src_prepare |
| 70 | # @DESCRIPTION: |
90 | # @DESCRIPTION: |
| 71 | # Default src_prepare function for packages that depend on qt4. If you have to |
91 | # Default src_prepare function for packages that depend on qt4. If you have to |
| 72 | # override src_prepare in your ebuild, you should call qt4-r2_src_prepare in it, |
92 | # override src_prepare in your ebuild, you should call qt4-r2_src_prepare in it, |
| 73 | # otherwise autopatcher will not work! |
93 | # otherwise autopatcher will not work! |
| … | |
… | |
| 102 | debug-print-function $FUNCNAME "$@" |
122 | debug-print-function $FUNCNAME "$@" |
| 103 | |
123 | |
| 104 | base_src_compile "$@" |
124 | base_src_compile "$@" |
| 105 | } |
125 | } |
| 106 | |
126 | |
| 107 | # @ECLASS-VARIABLE: DOCS |
|
|
| 108 | # @DEFAULT_UNSET |
|
|
| 109 | # @DESCRIPTION: |
|
|
| 110 | # Use this variable if you want to install any documentation. |
|
|
| 111 | # Example: |
|
|
| 112 | # @CODE |
|
|
| 113 | # DOCS="README AUTHORS" |
|
|
| 114 | # @CODE |
|
|
| 115 | |
|
|
| 116 | # @ECLASS-VARIABLE: DOCSDIR |
|
|
| 117 | # @DESCRIPTION: |
|
|
| 118 | # Directory containing documentation, defaults to ${S}. |
|
|
| 119 | |
|
|
| 120 | # @FUNCTION: qt4-r2_src_install |
127 | # @FUNCTION: qt4-r2_src_install |
| 121 | # @DESCRIPTION: |
128 | # @DESCRIPTION: |
| 122 | # Default src_install function for qt4-based packages. Installs compiled code |
129 | # Default src_install function for qt4-based packages. Installs compiled code |
| 123 | # and misc documentation (via DOCS variable). |
130 | # documentation (via DOCS and HTML_DOCS variables). |
|
|
131 | |
| 124 | qt4-r2_src_install() { |
132 | qt4-r2_src_install() { |
| 125 | debug-print-function $FUNCNAME "$@" |
133 | debug-print-function $FUNCNAME "$@" |
| 126 | |
134 | |
| 127 | emake INSTALL_ROOT="${D}" DESTDIR="${D}" install || die "emake install failed" |
135 | base_src_install INSTALL_ROOT="${D}" "$@" |
| 128 | |
136 | |
| 129 | # install documentation |
137 | # backward compatibility for non-array variables |
| 130 | local doc= dir=${DOCSDIR:-${S}} |
138 | if [[ -n ${DOCS} ]] && [[ "$(declare -p DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
| 131 | for doc in ${DOCS}; do |
|
|
| 132 | dodoc "${dir}/${doc}" || die "dodoc failed" |
139 | dodoc ${DOCS} || die "dodoc failed" |
| 133 | done |
140 | fi |
|
|
141 | if [[ -n ${HTML_DOCS} ]] && [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
142 | dohtml -r ${HTML_DOCS} || die "dohtml failed" |
|
|
143 | fi |
| 134 | } |
144 | } |
| 135 | |
145 | |
| 136 | # Internal function, used by eqmake4 and qt4-r2_src_configure |
146 | # Internal function, used by eqmake4 and qt4-r2_src_configure |
| 137 | # Look for project files: |
147 | # Look for project files: |
| 138 | # 0 *.pro files found - output null string |
148 | # 0 *.pro files found - output null string |