| 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.14 2011/09/16 15:33:19 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 | |
|
|
153 | # Keep .la files when: |
|
|
154 | # - they have shouldnotlink=yes - likely plugins, |
|
|
155 | # - respective static archive exists. |
| 152 | if [[ "$1" == 'all' || -z ${shouldnotlink} ]]; then |
156 | if [[ "$1" == 'all' || ( -z ${shouldnotlink} && ! -f ${archivefile} ) ]]; then |
| 153 | if [[ "$1" != 'none' ]]; then |
|
|
| 154 | einfo "Removing unnecessary ${f#${D%/}}" |
157 | einfo "Removing unnecessary ${f#${D%/}}" |
| 155 | rm -f "${f}" |
158 | rm -f "${f}" |
| 156 | fi |
|
|
| 157 | fi |
159 | fi |
|
|
160 | |
| 158 | # Remove static libs we're not supposed to link against |
161 | # Remove static libs we're not supposed to link against |
| 159 | if [[ -n ${shouldnotlink} ]]; then |
162 | if [[ -n ${shouldnotlink} ]]; then |
| 160 | local remove=${f/%.la/.a} |
163 | local remove=${f/%.la/.a} |
| 161 | [[ "${f}" != "${remove}" ]] || die 'regex sanity check failed' |
164 | [[ "${f}" != "${remove}" ]] || die 'regex sanity check failed' |
| 162 | einfo "Removing unnecessary ${remove#${D%/}}" |
165 | einfo "Removing unnecessary ${remove#${D%/}}" |
| … | |
… | |
| 243 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
246 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 244 | base_src_install "$@" |
247 | base_src_install "$@" |
| 245 | popd > /dev/null |
248 | popd > /dev/null |
| 246 | |
249 | |
| 247 | # Remove libtool files and unnecessary static libs |
250 | # 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} |
251 | remove_libtool_files |
| 251 | } |
252 | } |
| 252 | |
253 | |
| 253 | # @FUNCTION: autotools-utils_src_test |
254 | # @FUNCTION: autotools-utils_src_test |
| 254 | # @DESCRIPTION: |
255 | # @DESCRIPTION: |
| 255 | # The autotools src_test function. Runs emake check in build directory. |
256 | # The autotools src_test function. Runs emake check in build directory. |