| 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.13 2011/09/16 15:29:22 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.15 2011/09/16 15:37:41 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 | # Michał Górny <mgorny@gentoo.org> |
| … | |
… | |
| 130 | fi |
130 | fi |
| 131 | echo ">>> Working in BUILD_DIR: \"$AUTOTOOLS_BUILD_DIR\"" |
131 | echo ">>> Working in BUILD_DIR: \"$AUTOTOOLS_BUILD_DIR\"" |
| 132 | } |
132 | } |
| 133 | |
133 | |
| 134 | # @FUNCTION: remove_libtool_files |
134 | # @FUNCTION: remove_libtool_files |
| 135 | # @USAGE: [all|none] |
135 | # @USAGE: [all] |
| 136 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 137 | # Determines unnecessary libtool files (.la) and libtool static archives (.a) |
137 | # Determines unnecessary libtool files (.la) and libtool static archives (.a) |
| 138 | # and removes them from installation image. |
138 | # and removes them from installation image. |
|
|
139 | # |
| 139 | # To unconditionally remove all libtool files, pass 'all' as argument. |
140 | # To unconditionally remove all libtool files, pass 'all' as argument. |
| 140 | # To leave all libtool files alone, pass 'none' as argument. |
141 | # Otherwise, libtool archives required for static linking will be preserved. |
| 141 | # Unnecessary static archives are removed in any case. |
|
|
| 142 | # |
142 | # |
| 143 | # 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. |
| 144 | # See autotools-utils_src_install for reference. |
144 | # See autotools-utils_src_install for reference. |
| 145 | remove_libtool_files() { |
145 | remove_libtool_files() { |
| 146 | debug-print-function ${FUNCNAME} "$@" |
146 | debug-print-function ${FUNCNAME} "$@" |
| 147 | |
147 | |
| 148 | local f |
148 | local f |
| 149 | find "${D}" -type f -name '*.la' -print0 | while read -r -d '' f; do |
149 | find "${D}" -type f -name '*.la' -print0 | while read -r -d '' f; do |
| 150 | # Keep only .la files with shouldnotlink=yes - likely plugins |
|
|
| 151 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
150 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
|
|
151 | local archivefile=${f/%.la/.a} |
|
|
152 | [[ "${f}" != "${archivefile}" ]] || die 'regex sanity check failed' |
|
|
153 | |
|
|
154 | # Keep .la files when: |
|
|
155 | # - they have shouldnotlink=yes - likely plugins, |
|
|
156 | # - respective static archive exists. |
| 152 | if [[ "$1" == 'all' || -z ${shouldnotlink} ]]; then |
157 | if [[ "$1" == 'all' || ( -z ${shouldnotlink} && ! -f ${archivefile} ) ]]; then |
| 153 | if [[ "$1" != 'none' ]]; then |
|
|
| 154 | einfo "Removing unnecessary ${f#${D%/}}" |
158 | einfo "Removing unnecessary ${f#${D%/}}" |
| 155 | rm -f "${f}" |
159 | rm -f "${f}" || die |
| 156 | fi |
|
|
| 157 | fi |
160 | fi |
|
|
161 | |
| 158 | # Remove static libs we're not supposed to link against |
162 | # Remove static libs we're not supposed to link against |
| 159 | if [[ -n ${shouldnotlink} ]]; then |
163 | if [[ ${shouldnotlink} ]]; then |
| 160 | local remove=${f/%.la/.a} |
|
|
| 161 | [[ "${f}" != "${remove}" ]] || die 'regex sanity check failed' |
|
|
| 162 | einfo "Removing unnecessary ${remove#${D%/}}" |
164 | einfo "Removing unnecessary ${archivefile#${D%/}}" |
| 163 | rm -f "${remove}" |
165 | rm -f "${archivefile}" || die |
| 164 | fi |
166 | fi |
| 165 | done |
167 | done |
| 166 | } |
168 | } |
| 167 | |
169 | |
| 168 | # @FUNCTION: autotools-utils_src_prepare |
170 | # @FUNCTION: autotools-utils_src_prepare |
| … | |
… | |
| 243 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
245 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 244 | base_src_install "$@" |
246 | base_src_install "$@" |
| 245 | popd > /dev/null |
247 | popd > /dev/null |
| 246 | |
248 | |
| 247 | # Remove libtool files and unnecessary static libs |
249 | # Remove libtool files and unnecessary static libs |
| 248 | local args |
|
|
| 249 | has static-libs ${IUSE//+} && ! use static-libs || args='none' |
|
|
| 250 | remove_libtool_files ${args} |
250 | remove_libtool_files |
| 251 | } |
251 | } |
| 252 | |
252 | |
| 253 | # @FUNCTION: autotools-utils_src_test |
253 | # @FUNCTION: autotools-utils_src_test |
| 254 | # @DESCRIPTION: |
254 | # @DESCRIPTION: |
| 255 | # The autotools src_test function. Runs emake check in build directory. |
255 | # The autotools src_test function. Runs emake check in build directory. |