| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 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/autotools-utils.eclass,v 1.3 2010/07/20 09:49:45 reavertm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.17 2011/09/16 15:38:13 mgorny Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: autotools-utils.eclass |
5 | # @ECLASS: autotools-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Maciej Mrozowski <reavertm@gentoo.org> |
7 | # Maciej Mrozowski <reavertm@gentoo.org> |
|
|
8 | # Michał Górny <mgorny@gentoo.org> |
| 8 | # @BLURB: common ebuild functions for autotools-based packages |
9 | # @BLURB: common ebuild functions for autotools-based packages |
| 9 | # @DESCRIPTION: |
10 | # @DESCRIPTION: |
| 10 | # autotools-utils.eclass is autotools.eclass(5) and base.eclass(5) wrapper |
11 | # autotools-utils.eclass is autotools.eclass(5) and base.eclass(5) wrapper |
| 11 | # providing all inherited features along with econf arguments as Bash array, |
12 | # providing all inherited features along with econf arguments as Bash array, |
| 12 | # out of source build with overridable build dir location, static archives |
13 | # out of source build with overridable build dir location, static archives |
| … | |
… | |
| 54 | # "${FILESDIR}/${P}-as-needed.patch" |
55 | # "${FILESDIR}/${P}-as-needed.patch" |
| 55 | # "${FILESDIR}/${P}-unbundle_libpng.patch" |
56 | # "${FILESDIR}/${P}-unbundle_libpng.patch" |
| 56 | # ) |
57 | # ) |
| 57 | # |
58 | # |
| 58 | # src_configure() { |
59 | # src_configure() { |
| 59 | # myeconfargs=( |
60 | # local myeconfargs=( |
| 60 | # $(use_with qt4) |
61 | # $(use_with qt4) |
| 61 | # $(use_enable threads multithreading) |
62 | # $(use_enable threads multithreading) |
| 62 | # $(use_with tiff) |
63 | # $(use_with tiff) |
| 63 | # ) |
64 | # ) |
| 64 | # autotools-utils_src_configure |
65 | # autotools-utils_src_configure |
| … | |
… | |
| 81 | # @CODE |
82 | # @CODE |
| 82 | |
83 | |
| 83 | # Keep variable names synced with cmake-utils and the other way around! |
84 | # Keep variable names synced with cmake-utils and the other way around! |
| 84 | |
85 | |
| 85 | case ${EAPI:-0} in |
86 | case ${EAPI:-0} in |
| 86 | 2|3) ;; |
87 | 2|3|4) ;; |
| 87 | *) die "EAPI=${EAPI} is not supported" ;; |
88 | *) die "EAPI=${EAPI} is not supported" ;; |
| 88 | esac |
89 | esac |
| 89 | |
90 | |
| 90 | inherit autotools base |
91 | inherit autotools base |
| 91 | |
92 | |
| … | |
… | |
| 107 | # @ECLASS-VARIABLE: myeconfargs |
108 | # @ECLASS-VARIABLE: myeconfargs |
| 108 | # @DESCRIPTION: |
109 | # @DESCRIPTION: |
| 109 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
110 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
| 110 | # @CODE |
111 | # @CODE |
| 111 | # src_configure() { |
112 | # src_configure() { |
| 112 | # myeconfargs=( |
113 | # local myeconfargs=( |
| 113 | # --disable-readline |
114 | # --disable-readline |
| 114 | # --with-confdir="/etc/nasty foo confdir/" |
115 | # --with-confdir="/etc/nasty foo confdir/" |
| 115 | # $(use_enable debug cnddebug) |
116 | # $(use_enable debug cnddebug) |
| 116 | # $(use_enable threads multithreading) |
117 | # $(use_enable threads multithreading) |
| 117 | # ) |
118 | # ) |
| … | |
… | |
| 129 | fi |
130 | fi |
| 130 | echo ">>> Working in BUILD_DIR: \"$AUTOTOOLS_BUILD_DIR\"" |
131 | echo ">>> Working in BUILD_DIR: \"$AUTOTOOLS_BUILD_DIR\"" |
| 131 | } |
132 | } |
| 132 | |
133 | |
| 133 | # @FUNCTION: remove_libtool_files |
134 | # @FUNCTION: remove_libtool_files |
| 134 | # @USAGE: [all|none] |
135 | # @USAGE: [all] |
| 135 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 136 | # Determines unnecessary libtool files (.la) and libtool static archives (.a) |
137 | # Determines unnecessary libtool files (.la) and libtool static archives (.a) |
| 137 | # and removes them from installation image. |
138 | # and removes them from installation image. |
|
|
139 | # |
| 138 | # To unconditionally remove all libtool files, pass 'all' as argument. |
140 | # To unconditionally remove all libtool files, pass 'all' as argument. |
| 139 | # To leave all libtool files alone, pass 'none' as argument. |
141 | # Otherwise, libtool archives required for static linking will be preserved. |
| 140 | # Unnecessary static archives are removed in any case. |
|
|
| 141 | # |
142 | # |
| 142 | # In most cases it's not necessary to manually invoke this function. |
143 | # In most cases it's not necessary to manually invoke this function. |
| 143 | # See autotools-utils_src_install for reference. |
144 | # See autotools-utils_src_install for reference. |
| 144 | remove_libtool_files() { |
145 | remove_libtool_files() { |
| 145 | debug-print-function ${FUNCNAME} "$@" |
146 | debug-print-function ${FUNCNAME} "$@" |
|
|
147 | local removing_all |
|
|
148 | [[ ${#} -le 1 ]] || die "Invalid number of args to ${FUNCNAME}()" |
|
|
149 | if [[ ${#} -eq 1 ]]; then |
|
|
150 | case "${1}" in |
|
|
151 | all) |
|
|
152 | removing_all=1 |
|
|
153 | ;; |
|
|
154 | *) |
|
|
155 | die "Invalid argument to ${FUNCNAME}(): ${1}" |
|
|
156 | esac |
|
|
157 | fi |
| 146 | |
158 | |
| 147 | local f |
159 | local f |
| 148 | for f in $(find "${D}" -type f -name '*.la'); do |
160 | find "${D}" -type f -name '*.la' -print0 | while read -r -d '' f; do |
| 149 | # Keep only .la files with shouldnotlink=yes - likely plugins |
|
|
| 150 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
161 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
|
|
162 | local archivefile=${f/%.la/.a} |
|
|
163 | [[ "${f}" != "${archivefile}" ]] || die 'regex sanity check failed' |
|
|
164 | |
|
|
165 | # Remove static libs we're not supposed to link against |
| 151 | if [[ "$1" == 'all' || -z ${shouldnotlink} ]]; then |
166 | if [[ ${shouldnotlink} ]]; then |
| 152 | if [[ "$1" != 'none' ]]; then |
167 | einfo "Removing unnecessary ${archivefile#${D%/}}" |
| 153 | echo "Removing unnecessary ${f}" |
168 | rm -f "${archivefile}" || die |
| 154 | rm -f "${f}" |
169 | # We're never going to remove the .la file. |
| 155 | fi |
170 | [[ ${removing_all} ]] || continue |
| 156 | fi |
171 | fi |
| 157 | # Remove static libs we're not supposed to link against |
172 | |
| 158 | if [[ -n ${shouldnotlink} ]]; then |
173 | # Keep .la files when: |
| 159 | local remove=${f/%.la/.a} |
174 | # - they have shouldnotlink=yes - likely plugins (handled above), |
| 160 | [[ "${f}" != "${remove}" ]] || die 'regex sanity check failed' |
175 | # - respective static archive exists. |
|
|
176 | if [[ ${removing_all} || ! -f ${archivefile} ]]; then |
| 161 | echo "Removing unnecessary ${remove}" |
177 | einfo "Removing unnecessary ${f#${D%/}}" |
| 162 | rm -f "${remove}" |
178 | rm -f "${f}" || die |
| 163 | fi |
179 | fi |
| 164 | done |
180 | done |
| 165 | } |
181 | } |
| 166 | |
182 | |
| 167 | # @FUNCTION: autotools-utils_src_prepare |
183 | # @FUNCTION: autotools-utils_src_prepare |
| … | |
… | |
| 204 | $(use_enable static-libs static) |
220 | $(use_enable static-libs static) |
| 205 | ) |
221 | ) |
| 206 | fi |
222 | fi |
| 207 | |
223 | |
| 208 | # Append user args |
224 | # Append user args |
| 209 | econfargs+=(${myeconfargs[@]}) |
225 | econfargs+=("${myeconfargs[@]}") |
| 210 | |
226 | |
| 211 | _check_build_dir |
227 | _check_build_dir |
| 212 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
228 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 213 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
229 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 214 | base_src_configure "${econfargs[@]}" |
230 | base_src_configure "${econfargs[@]}" "$@" |
| 215 | popd > /dev/null |
231 | popd > /dev/null |
| 216 | } |
232 | } |
| 217 | |
233 | |
| 218 | # @FUNCTION: autotools-utils_src_compile |
234 | # @FUNCTION: autotools-utils_src_compile |
| 219 | # @DESCRIPTION: |
235 | # @DESCRIPTION: |
| … | |
… | |
| 238 | autotools-utils_src_install() { |
254 | autotools-utils_src_install() { |
| 239 | debug-print-function ${FUNCNAME} "$@" |
255 | debug-print-function ${FUNCNAME} "$@" |
| 240 | |
256 | |
| 241 | _check_build_dir |
257 | _check_build_dir |
| 242 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
258 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 243 | base_src_install |
259 | base_src_install "$@" |
| 244 | popd > /dev/null |
260 | popd > /dev/null |
| 245 | |
261 | |
| 246 | # Remove libtool files and unnecessary static libs |
262 | # Remove libtool files and unnecessary static libs |
| 247 | local args |
|
|
| 248 | has static-libs ${IUSE//+} && ! use static-libs || args='none' |
|
|
| 249 | remove_libtool_files ${args} |
263 | remove_libtool_files |
| 250 | } |
264 | } |
| 251 | |
265 | |
| 252 | # @FUNCTION: autotools-utils_src_test |
266 | # @FUNCTION: autotools-utils_src_test |
| 253 | # @DESCRIPTION: |
267 | # @DESCRIPTION: |
| 254 | # The autotools src_test function. Runs emake check in build directory. |
268 | # The autotools src_test function. Runs emake check in build directory. |