| 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.18 2011/09/16 15:38:26 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.19 2011/09/16 15:38:40 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> |
| … | |
… | |
| 154 | *) |
154 | *) |
| 155 | die "Invalid argument to ${FUNCNAME}(): ${1}" |
155 | die "Invalid argument to ${FUNCNAME}(): ${1}" |
| 156 | esac |
156 | esac |
| 157 | fi |
157 | fi |
| 158 | |
158 | |
|
|
159 | local pc_libs=() |
|
|
160 | if [[ ! ${removing_all} ]]; then |
|
|
161 | local arg |
|
|
162 | for arg in $(find "${D}" -name '*.pc' -exec \ |
|
|
163 | sed -n -e 's;^Libs:;;p' {} +); do |
|
|
164 | [[ ${arg} == -l* ]] && pc_libs+=(lib${arg#-l}.la) |
|
|
165 | done |
|
|
166 | fi |
|
|
167 | |
| 159 | local f |
168 | local f |
| 160 | find "${D}" -type f -name '*.la' -print0 | while read -r -d '' f; do |
169 | find "${D}" -type f -name '*.la' -print0 | while read -r -d '' f; do |
| 161 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
170 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
| 162 | local archivefile=${f/%.la/.a} |
171 | local archivefile=${f/%.la/.a} |
| 163 | [[ "${f}" != "${archivefile}" ]] || die 'regex sanity check failed' |
172 | [[ "${f}" != "${archivefile}" ]] || die 'regex sanity check failed' |
| … | |
… | |
| 172 | fi |
181 | fi |
| 173 | |
182 | |
| 174 | # Remove .la files when: |
183 | # Remove .la files when: |
| 175 | # - user explicitly wants us to remove all .la files, |
184 | # - user explicitly wants us to remove all .la files, |
| 176 | # - respective static archive doesn't exist, |
185 | # - respective static archive doesn't exist, |
|
|
186 | # - they are covered by a .pc file already, |
| 177 | # - they don't provide any new information (no libs & no flags). |
187 | # - they don't provide any new information (no libs & no flags). |
| 178 | local removing |
188 | local removing |
| 179 | if [[ ${removing_all} ]]; then removing=1 |
189 | if [[ ${removing_all} ]]; then removing=1 |
| 180 | elif [[ ! -f ${archivefile} ]]; then removing=1 |
190 | elif [[ ! -f ${archivefile} ]]; then removing=1 |
|
|
191 | elif has "$(basename "${f}")" "${pc_libs[@]}"; then removing=1 |
| 181 | elif [[ ! $(sed -n -e \ |
192 | elif [[ ! $(sed -n -e \ |
| 182 | "s/^\(dependency_libs\|inherited_linker_flags\)='\(.*\)'$/\2/p" \ |
193 | "s/^\(dependency_libs\|inherited_linker_flags\)='\(.*\)'$/\2/p" \ |
| 183 | "${f}") ]]; then removing=1 |
194 | "${f}") ]]; then removing=1 |
| 184 | fi |
195 | fi |
| 185 | |
196 | |