| 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.10 2011/09/12 19:11:20 reavertm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.11 2011/09/12 20:32: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> |
| … | |
… | |
| 149 | for f in $(find "${D}" -type f -name '*.la'); do |
149 | for f in $(find "${D}" -type f -name '*.la'); do |
| 150 | # Keep only .la files with shouldnotlink=yes - likely plugins |
150 | # Keep only .la files with shouldnotlink=yes - likely plugins |
| 151 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
151 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
| 152 | if [[ "$1" == 'all' || -z ${shouldnotlink} ]]; then |
152 | if [[ "$1" == 'all' || -z ${shouldnotlink} ]]; then |
| 153 | if [[ "$1" != 'none' ]]; then |
153 | if [[ "$1" != 'none' ]]; then |
| 154 | echo "Removing unnecessary ${f}" |
154 | einfo "Removing unnecessary ${f}" |
| 155 | rm -f "${f}" |
155 | rm -f "${f}" |
| 156 | fi |
156 | fi |
| 157 | fi |
157 | fi |
| 158 | # Remove static libs we're not supposed to link against |
158 | # Remove static libs we're not supposed to link against |
| 159 | if [[ -n ${shouldnotlink} ]]; then |
159 | if [[ -n ${shouldnotlink} ]]; then |
| 160 | local remove=${f/%.la/.a} |
160 | local remove=${f/%.la/.a} |
| 161 | [[ "${f}" != "${remove}" ]] || die 'regex sanity check failed' |
161 | [[ "${f}" != "${remove}" ]] || die 'regex sanity check failed' |
| 162 | echo "Removing unnecessary ${remove}" |
162 | einfo "Removing unnecessary ${remove}" |
| 163 | rm -f "${remove}" |
163 | rm -f "${remove}" |
| 164 | fi |
164 | fi |
| 165 | done |
165 | done |
| 166 | } |
166 | } |
| 167 | |
167 | |