| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2011 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/perl-module.eclass,v 1.115 2009/03/26 17:40:23 tove Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.132 2012/04/15 20:15:39 vapier Exp $ |
| 4 | # |
|
|
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
|
|
| 6 | |
4 | |
| 7 | # @ECLASS: perl-module.eclass |
5 | # @ECLASS: perl-module.eclass |
| 8 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 9 | # perl@gentoo.org |
7 | # perl@gentoo.org |
|
|
8 | # @AUTHOR: |
|
|
9 | # Seemant Kulleen <seemant@gentoo.org> |
| 10 | # @BLURB: eclass for perl modules |
10 | # @BLURB: eclass for perl modules |
| 11 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 12 | # The perl-module eclass is designed to allow easier installation of perl |
12 | # The perl-module eclass is designed to allow easier installation of perl |
| 13 | # modules, and their incorporation into the Gentoo Linux system. |
13 | # modules, and their incorporation into the Gentoo Linux system. |
| 14 | |
14 | |
| 15 | inherit eutils base |
15 | inherit eutils base |
|
|
16 | [[ ${CATEGORY} == "perl-core" ]] && inherit alternatives |
|
|
17 | |
|
|
18 | PERL_EXPF="src_unpack src_compile src_test src_install" |
| 16 | |
19 | |
| 17 | case "${EAPI:-0}" in |
20 | case "${EAPI:-0}" in |
| 18 | 0|1) |
21 | 0|1) |
| 19 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test src_unpack |
22 | PERL_EXPF+=" pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm" |
| 20 | ;; |
23 | ;; |
| 21 | 2) |
24 | 2|3|4) |
| 22 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install |
25 | PERL_EXPF+=" src_prepare src_configure" |
|
|
26 | [[ ${CATEGORY} == "perl-core" ]] && \ |
|
|
27 | PERL_EXPF+=" pkg_postinst pkg_postrm" |
| 23 | |
28 | |
| 24 | case "${GENTOO_DEPEND_ON_PERL:-yes}" in |
29 | case "${GENTOO_DEPEND_ON_PERL:-yes}" in |
| 25 | yes) |
30 | yes) |
| 26 | DEPEND="dev-lang/perl[-build]" |
31 | DEPEND="dev-lang/perl[-build]" |
| 27 | RDEPEND="${DEPEND}" |
32 | RDEPEND="${DEPEND}" |
| 28 | ;; |
33 | ;; |
| 29 | esac |
34 | esac |
| 30 | ;; |
35 | ;; |
|
|
36 | *) |
|
|
37 | die "EAPI=${EAPI} is not supported by perl-module.eclass" |
|
|
38 | ;; |
| 31 | esac |
39 | esac |
| 32 | |
40 | |
|
|
41 | case "${PERL_EXPORT_PHASE_FUNCTIONS:-yes}" in |
|
|
42 | yes) |
|
|
43 | EXPORT_FUNCTIONS ${PERL_EXPF} |
|
|
44 | ;; |
|
|
45 | no) |
|
|
46 | debug-print "PERL_EXPORT_PHASE_FUNCTIONS=no" |
|
|
47 | ;; |
|
|
48 | *) |
|
|
49 | die "PERL_EXPORT_PHASE_FUNCTIONS=${PERL_EXPORT_PHASE_FUNCTIONS} is not supported by perl-module.eclass" |
|
|
50 | ;; |
|
|
51 | esac |
|
|
52 | |
| 33 | DESCRIPTION="Based on the $ECLASS eclass" |
53 | DESCRIPTION="Based on the $ECLASS eclass" |
| 34 | |
54 | |
| 35 | LICENSE="${LICENSE:-|| ( Artistic GPL-2 )}" |
55 | LICENSE="${LICENSE:-|| ( Artistic GPL-1 GPL-2 GPL-3 )}" |
| 36 | |
56 | |
| 37 | [[ -z "${SRC_URI}" && -z "${MODULE_A}" ]] && MODULE_A="${MY_P:-${P}}.tar.gz" |
57 | if [[ -n ${MY_PN} || -n ${MY_PV} || -n ${MODULE_VERSION} ]] ; then |
|
|
58 | : ${MY_P:=${MY_PN:-${PN}}-${MY_PV:-${MODULE_VERSION:-${PV}}}} |
|
|
59 | S=${MY_S:-${WORKDIR}/${MY_P}} |
|
|
60 | fi |
|
|
61 | |
|
|
62 | [[ -z "${SRC_URI}" && -z "${MODULE_A}" ]] && \ |
|
|
63 | MODULE_A="${MY_P:-${P}}.${MODULE_A_EXT:-tar.gz}" |
| 38 | [[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \ |
64 | [[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \ |
| 39 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION}/${MODULE_A}" |
65 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION:+${MODULE_SECTION}/}${MODULE_A}" |
| 40 | [[ -z "${HOMEPAGE}" ]] && \ |
66 | [[ -z "${HOMEPAGE}" ]] && \ |
| 41 | HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}" |
67 | HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}/" |
| 42 | |
68 | |
| 43 | SRC_PREP="no" |
69 | SRC_PREP="no" |
| 44 | SRC_TEST="skip" |
70 | SRC_TEST="skip" |
| 45 | PREFER_BUILDPL="yes" |
71 | PREFER_BUILDPL="yes" |
| 46 | |
72 | |
| 47 | PERL_VERSION="" |
|
|
| 48 | SITE_ARCH="" |
|
|
| 49 | SITE_LIB="" |
|
|
| 50 | ARCH_LIB="" |
|
|
| 51 | VENDOR_ARCH="" |
|
|
| 52 | VENDOR_LIB="" |
|
|
| 53 | |
|
|
| 54 | pm_echovar="" |
73 | pm_echovar="" |
| 55 | perlinfo_done=false |
74 | perlinfo_done=false |
| 56 | |
75 | |
| 57 | perl-module_src_unpack() { |
76 | perl-module_src_unpack() { |
|
|
77 | debug-print-function $FUNCNAME "$@" |
| 58 | base_src_unpack unpack |
78 | base_src_unpack |
| 59 | has "${EAPI:-0}" 0 1 && perl-module_src_prepare |
79 | has src_prepare ${PERL_EXPF} || perl-module_src_prepare |
| 60 | } |
80 | } |
| 61 | |
81 | |
| 62 | perl-module_src_prepare() { |
82 | perl-module_src_prepare() { |
| 63 | if [[ -n ${PATCHES} ]] ; then |
83 | debug-print-function $FUNCNAME "$@" |
| 64 | base_src_unpack autopatch |
84 | has src_prepare ${PERL_EXPF} && base_src_prepare |
| 65 | fi |
85 | perl_fix_osx_extra |
| 66 | esvn_clean |
86 | esvn_clean |
| 67 | } |
87 | } |
| 68 | |
88 | |
| 69 | perl-module_src_configure() { |
89 | perl-module_src_configure() { |
|
|
90 | debug-print-function $FUNCNAME "$@" |
| 70 | perl-module_src_prep |
91 | perl-module_src_prep |
| 71 | } |
92 | } |
| 72 | |
93 | |
| 73 | perl-module_src_prep() { |
94 | perl-module_src_prep() { |
|
|
95 | debug-print-function $FUNCNAME "$@" |
| 74 | [[ "${SRC_PREP}" = "yes" ]] && return 0 |
96 | [[ ${SRC_PREP} = yes ]] && return 0 |
| 75 | SRC_PREP="yes" |
97 | SRC_PREP="yes" |
| 76 | |
98 | |
| 77 | ${perlinfo_done} || perlinfo |
99 | perl_set_version |
|
|
100 | perl_set_eprefix |
| 78 | |
101 | |
| 79 | export PERL_MM_USE_DEFAULT=1 |
102 | [[ -z ${pm_echovar} ]] && export PERL_MM_USE_DEFAULT=1 |
| 80 | # Disable ExtUtils::AutoInstall from prompting |
103 | # Disable ExtUtils::AutoInstall from prompting |
| 81 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
104 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 82 | |
105 | |
|
|
106 | if [[ $(declare -p myconf 2>&-) != "declare -a myconf="* ]]; then |
|
|
107 | local myconf_local=(${myconf}) |
|
|
108 | else |
|
|
109 | local myconf_local=("${myconf[@]}") |
|
|
110 | fi |
|
|
111 | |
| 83 | if [[ "${PREFER_BUILDPL}" == "yes" && -f Build.PL ]] ; then |
112 | if [[ ( ${PREFER_BUILDPL} == yes || ! -f Makefile.PL ) && -f Build.PL ]] ; then |
| 84 | einfo "Using Module::Build" |
113 | einfo "Using Module::Build" |
| 85 | perl Build.PL \ |
114 | if [[ ${DEPEND} != *virtual/perl-Module-Build* && ${PN} != Module-Build ]] ; then |
|
|
115 | eqawarn "QA Notice: The ebuild uses Module::Build but doesn't depend on it." |
|
|
116 | eqawarn " Add virtual/perl-Module-Build to DEPEND!" |
|
|
117 | if [[ -n ${PERLQAFATAL} ]]; then |
|
|
118 | eerror "Bailing out due to PERLQAFATAL=1"; |
|
|
119 | die; |
|
|
120 | fi |
|
|
121 | fi |
|
|
122 | set -- \ |
| 86 | --installdirs=vendor \ |
123 | --installdirs=vendor \ |
| 87 | --libdoc= \ |
124 | --libdoc= \ |
| 88 | --destdir="${D}" \ |
125 | --destdir="${D}" \ |
| 89 | --create_packlist=0 \ |
126 | --create_packlist=0 \ |
| 90 | --extra_linker_flags="${LDFLAGS}" \ |
127 | "${myconf_local[@]}" |
| 91 | ${myconf} \ |
128 | einfo "perl Build.PL" "$@" |
| 92 | <<< "${pm_echovar}" \ |
129 | perl Build.PL "$@" <<< "${pm_echovar}" \ |
| 93 | || die "Unable to build! (are you using USE=\"build\"?)" |
130 | || die "Unable to build!" |
| 94 | elif [[ -f Makefile.PL ]] ; then |
131 | elif [[ -f Makefile.PL ]] ; then |
| 95 | einfo "Using ExtUtils::MakeMaker" |
132 | einfo "Using ExtUtils::MakeMaker" |
| 96 | perl Makefile.PL \ |
133 | set -- \ |
| 97 | PREFIX=/usr \ |
134 | PREFIX=${EPREFIX}/usr \ |
| 98 | INSTALLDIRS=vendor \ |
135 | INSTALLDIRS=vendor \ |
| 99 | INSTALLMAN3DIR='none' \ |
136 | INSTALLMAN3DIR='none' \ |
| 100 | DESTDIR="${D}" \ |
137 | DESTDIR="${D}" \ |
| 101 | ${myconf} \ |
138 | "${myconf_local[@]}" |
| 102 | <<< "${pm_echovar}" \ |
139 | einfo "perl Makefile.PL" "$@" |
| 103 | || die "Unable to build! (are you using USE=\"build\"?)" |
140 | perl Makefile.PL "$@" <<< "${pm_echovar}" \ |
|
|
141 | || die "Unable to build!" |
| 104 | fi |
142 | fi |
| 105 | if [[ ! -f Build.PL && ! -f Makefile.PL ]] ; then |
143 | if [[ ! -f Build.PL && ! -f Makefile.PL ]] ; then |
| 106 | einfo "No Make or Build file detected..." |
144 | einfo "No Make or Build file detected..." |
| 107 | return |
145 | return |
| 108 | fi |
146 | fi |
| 109 | } |
147 | } |
| 110 | |
148 | |
| 111 | perl-module_src_compile() { |
149 | perl-module_src_compile() { |
| 112 | ${perlinfo_done} || perlinfo |
150 | debug-print-function $FUNCNAME "$@" |
|
|
151 | perl_set_version |
| 113 | |
152 | |
| 114 | has "${EAPI:-0}" 0 1 && perl-module_src_prep |
153 | has src_configure ${PERL_EXPF} || perl-module_src_prep |
|
|
154 | |
|
|
155 | if [[ $(declare -p mymake 2>&-) != "declare -a mymake="* ]]; then |
|
|
156 | local mymake_local=(${mymake}) |
|
|
157 | else |
|
|
158 | local mymake_local=("${mymake[@]}") |
|
|
159 | fi |
| 115 | |
160 | |
| 116 | if [[ -f Build ]] ; then |
161 | if [[ -f Build ]] ; then |
| 117 | ./Build build \ |
162 | ./Build build \ |
| 118 | || die "compilation failed" |
163 | || die "Compilation failed" |
| 119 | elif [[ -f Makefile ]] ; then |
164 | elif [[ -f Makefile ]] ; then |
| 120 | emake \ |
165 | set -- \ |
| 121 | OTHERLDFLAGS="${LDFLAGS}" \ |
166 | OTHERLDFLAGS="${LDFLAGS}" \ |
| 122 | ${mymake} \ |
167 | "${mymake_local[@]}" |
|
|
168 | einfo "emake" "$@" |
|
|
169 | emake "$@" \ |
| 123 | || die "compilation failed" |
170 | || die "Compilation failed" |
| 124 | # OPTIMIZE="${CFLAGS}" \ |
171 | # OPTIMIZE="${CFLAGS}" \ |
| 125 | fi |
172 | fi |
| 126 | } |
173 | } |
| 127 | |
174 | |
|
|
175 | # For testers: |
|
|
176 | # This code attempts to work out your threadingness from MAKEOPTS |
|
|
177 | # and apply them to Test::Harness. |
|
|
178 | # |
|
|
179 | # If you want more verbose testing, set TEST_VERBOSE=1 |
|
|
180 | # in your bashrc | /etc/make.conf | ENV |
|
|
181 | # |
|
|
182 | # For ebuild writers: |
|
|
183 | # If you wish to enable default tests w/ 'make test' , |
|
|
184 | # |
|
|
185 | # SRC_TEST="do" |
|
|
186 | # |
|
|
187 | # If you wish to have threads run in parallel ( using the users makeopts ) |
|
|
188 | # all of the following have been tested to work. |
|
|
189 | # |
|
|
190 | # SRC_TEST="do parallel" |
|
|
191 | # SRC_TEST="parallel" |
|
|
192 | # SRC_TEST="parallel do" |
|
|
193 | # SRC_TEST=parallel |
|
|
194 | # |
|
|
195 | |
| 128 | perl-module_src_test() { |
196 | perl-module_src_test() { |
| 129 | if [[ "${SRC_TEST}" == "do" ]] ; then |
197 | debug-print-function $FUNCNAME "$@" |
|
|
198 | if has 'do' ${SRC_TEST} || has 'parallel' ${SRC_TEST} ; then |
|
|
199 | if has "${TEST_VERBOSE:-0}" 0 && has 'parallel' ${SRC_TEST} ; then |
|
|
200 | export HARNESS_OPTIONS=j$(makeopts_jobs) |
|
|
201 | einfo "Test::Harness Jobs=$(makeopts_jobs)" |
|
|
202 | fi |
| 130 | ${perlinfo_done} || perlinfo |
203 | ${perlinfo_done} || perl_set_version |
| 131 | if [[ -f Build ]] ; then |
204 | if [[ -f Build ]] ; then |
| 132 | ./Build test || die "test failed" |
205 | ./Build test verbose=${TEST_VERBOSE:-0} || die "test failed" |
| 133 | elif [[ -f Makefile ]] ; then |
206 | elif [[ -f Makefile ]] ; then |
| 134 | emake test || die "test failed" |
207 | emake test TEST_VERBOSE=${TEST_VERBOSE:-0} || die "test failed" |
| 135 | fi |
208 | fi |
| 136 | fi |
209 | fi |
| 137 | } |
210 | } |
| 138 | |
211 | |
| 139 | perl-module_src_install() { |
212 | perl-module_src_install() { |
|
|
213 | debug-print-function $FUNCNAME "$@" |
|
|
214 | |
|
|
215 | perl_set_version |
|
|
216 | perl_set_eprefix |
|
|
217 | |
| 140 | local f |
218 | local f |
| 141 | ${perlinfo_done} || perlinfo |
|
|
| 142 | |
219 | |
| 143 | if [[ -z ${mytargets} ]] ; then |
220 | if [[ -z ${mytargets} ]] ; then |
| 144 | case "${CATEGORY}" in |
221 | case "${CATEGORY}" in |
| 145 | dev-perl|perl-core) mytargets="pure_install" ;; |
222 | dev-perl|perl-core) mytargets="pure_install" ;; |
| 146 | *) mytargets="install" ;; |
223 | *) mytargets="install" ;; |
| 147 | esac |
224 | esac |
| 148 | fi |
225 | fi |
| 149 | |
226 | |
|
|
227 | if [[ $(declare -p myinst 2>&-) != "declare -a myinst="* ]]; then |
|
|
228 | local myinst_local=(${myinst}) |
|
|
229 | else |
|
|
230 | local myinst_local=("${myinst[@]}") |
|
|
231 | fi |
|
|
232 | |
| 150 | if [[ -f Build ]] ; then |
233 | if [[ -f Build ]] ; then |
| 151 | ./Build ${mytargets} \ |
234 | ./Build ${mytargets} \ |
| 152 | || die "./Build ${mytargets} failed" |
235 | || die "./Build ${mytargets} failed" |
| 153 | elif [[ -f Makefile ]] ; then |
236 | elif [[ -f Makefile ]] ; then |
| 154 | emake ${myinst} ${mytargets} \ |
237 | emake "${myinst_local[@]}" ${mytargets} \ |
| 155 | || die "emake ${myinst} ${mytargets} failed" |
238 | || die "emake ${myinst_local[@]} ${mytargets} failed" |
| 156 | fi |
239 | fi |
| 157 | |
240 | |
| 158 | if [[ -d "${D}"/usr/share/man ]] ; then |
241 | perl_delete_module_manpages |
| 159 | # einfo "Cleaning out stray man files" |
242 | perl_delete_localpod |
| 160 | find "${D}"/usr/share/man -type f -name "*.3pm" -delete |
243 | perl_delete_packlist |
| 161 | find "${D}"/usr/share/man -depth -type d -empty -delete |
244 | perl_remove_temppath |
| 162 | fi |
|
|
| 163 | |
245 | |
| 164 | fixlocalpod |
|
|
| 165 | |
|
|
| 166 | for f in Change* CHANGES README* ${mydoc}; do |
246 | for f in Change* CHANGES README* TODO FAQ ${mydoc}; do |
| 167 | [[ -s "${f}" ]] && dodoc ${f} |
247 | [[ -s ${f} ]] && dodoc ${f} |
| 168 | done |
248 | done |
| 169 | |
249 | |
| 170 | if [[ -d "${D}/${VENDOR_LIB}" ]] ; then |
250 | perl_link_duallife_scripts |
| 171 | find "${D}/${VENDOR_LIB}" -type f -a \( -name .packlist \ |
|
|
| 172 | -o \( -name '*.bs' -a -empty \) \) -delete |
|
|
| 173 | find "${D}/${VENDOR_LIB}" -depth -mindepth 1 -type d -empty -delete |
|
|
| 174 | fi |
|
|
| 175 | |
|
|
| 176 | find "${D}" -type f -not -name '*.so' -print0 | while read -rd '' f ; do |
|
|
| 177 | if file "${f}" | grep -q -i " text" ; then |
|
|
| 178 | if grep -q "${D}" "${f}" ; then ewarn "QA: File contains a temporary path ${f}" ;fi |
|
|
| 179 | sed -i -e "s:${D}:/:g" "${f}" |
|
|
| 180 | fi |
|
|
| 181 | done |
|
|
| 182 | } |
251 | } |
| 183 | |
252 | |
| 184 | perl-module_pkg_setup() { |
253 | perl-module_pkg_setup() { |
| 185 | ${perlinfo_done} || perlinfo |
254 | debug-print-function $FUNCNAME "$@" |
|
|
255 | perl_set_version |
| 186 | } |
256 | } |
| 187 | |
257 | |
| 188 | perl-module_pkg_preinst() { |
258 | perl-module_pkg_preinst() { |
| 189 | ${perlinfo_done} || perlinfo |
259 | debug-print-function $FUNCNAME "$@" |
|
|
260 | perl_set_version |
| 190 | } |
261 | } |
| 191 | |
262 | |
| 192 | perl-module_pkg_postinst() { : ; } |
263 | perl-module_pkg_postinst() { |
| 193 | # einfo "Man pages are not installed for most modules now." |
264 | debug-print-function $FUNCNAME "$@" |
| 194 | # einfo "Please use perldoc instead." |
265 | perl_link_duallife_scripts |
| 195 | #} |
266 | } |
| 196 | |
267 | |
| 197 | perl-module_pkg_prerm() { : ; } |
268 | perl-module_pkg_prerm() { |
|
|
269 | debug-print-function $FUNCNAME "$@" |
|
|
270 | } |
| 198 | |
271 | |
| 199 | perl-module_pkg_postrm() { : ; } |
272 | perl-module_pkg_postrm() { |
|
|
273 | debug-print-function $FUNCNAME "$@" |
|
|
274 | perl_link_duallife_scripts |
|
|
275 | } |
| 200 | |
276 | |
| 201 | perlinfo() { |
277 | perlinfo() { |
|
|
278 | debug-print-function $FUNCNAME "$@" |
|
|
279 | perl_set_version |
|
|
280 | } |
|
|
281 | |
|
|
282 | perl_set_version() { |
|
|
283 | debug-print-function $FUNCNAME "$@" |
|
|
284 | debug-print "$FUNCNAME: perlinfo_done=${perlinfo_done}" |
|
|
285 | ${perlinfo_done} && return 0 |
| 202 | perlinfo_done=true |
286 | perlinfo_done=true |
| 203 | |
287 | |
| 204 | local f version install{site{arch,lib},archlib,vendor{arch,lib}} |
288 | local f version install{{site,vendor}{arch,lib},archlib} |
| 205 | for f in version install{site{arch,lib},archlib,vendor{arch,lib}} ; do |
289 | eval "$(perl -V:{version,install{{site,vendor}{arch,lib},archlib}} )" |
| 206 | eval "$(perl -V:${f} )" |
|
|
| 207 | done |
|
|
| 208 | PERL_VERSION=${version} |
290 | PERL_VERSION=${version} |
| 209 | SITE_ARCH=${installsitearch} |
291 | SITE_ARCH=${installsitearch} |
| 210 | SITE_LIB=${installsitelib} |
292 | SITE_LIB=${installsitelib} |
| 211 | ARCH_LIB=${installarchlib} |
293 | ARCH_LIB=${installarchlib} |
| 212 | VENDOR_LIB=${installvendorlib} |
294 | VENDOR_LIB=${installvendorlib} |
| 213 | VENDOR_ARCH=${installvendorarch} |
295 | VENDOR_ARCH=${installvendorarch} |
| 214 | } |
296 | } |
| 215 | |
297 | |
| 216 | fixlocalpod() { |
298 | fixlocalpod() { |
|
|
299 | debug-print-function $FUNCNAME "$@" |
|
|
300 | perl_delete_localpod |
|
|
301 | } |
|
|
302 | |
|
|
303 | perl_delete_localpod() { |
|
|
304 | debug-print-function $FUNCNAME "$@" |
|
|
305 | |
| 217 | find "${D}" -type f -name perllocal.pod -delete |
306 | find "${D}" -type f -name perllocal.pod -delete |
| 218 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
307 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
| 219 | } |
308 | } |
|
|
309 | |
|
|
310 | perl_fix_osx_extra() { |
|
|
311 | debug-print-function $FUNCNAME "$@" |
|
|
312 | |
|
|
313 | # Remove "AppleDouble encoded Macintosh file" |
|
|
314 | local f |
|
|
315 | find "${S}" -type f -name "._*" -print0 | while read -rd '' f ; do |
|
|
316 | einfo "Removing AppleDouble encoded Macintosh file: ${f#${S}/}" |
|
|
317 | rm -f "${f}" |
|
|
318 | f=${f#${S}/} |
|
|
319 | # f=${f//\//\/} |
|
|
320 | # f=${f//\./\.} |
|
|
321 | # sed -i "/${f}/d" "${S}"/MANIFEST || die |
|
|
322 | grep -q "${f}" "${S}"/MANIFEST && \ |
|
|
323 | elog "AppleDouble encoded Macintosh file in MANIFEST: ${f#${S}/}" |
|
|
324 | done |
|
|
325 | } |
|
|
326 | |
|
|
327 | perl_delete_module_manpages() { |
|
|
328 | debug-print-function $FUNCNAME "$@" |
|
|
329 | |
|
|
330 | perl_set_eprefix |
|
|
331 | |
|
|
332 | if [[ -d "${ED}"/usr/share/man ]] ; then |
|
|
333 | # einfo "Cleaning out stray man files" |
|
|
334 | find "${ED}"/usr/share/man -type f -name "*.3pm" -delete |
|
|
335 | find "${ED}"/usr/share/man -depth -type d -empty -delete |
|
|
336 | fi |
|
|
337 | } |
|
|
338 | |
|
|
339 | |
|
|
340 | perl_delete_packlist() { |
|
|
341 | debug-print-function $FUNCNAME "$@" |
|
|
342 | perl_set_version |
|
|
343 | if [[ -d ${D}/${VENDOR_ARCH} ]] ; then |
|
|
344 | find "${D}/${VENDOR_ARCH}" -type f -a \( -name .packlist \ |
|
|
345 | -o \( -name '*.bs' -a -empty \) \) -delete |
|
|
346 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
|
|
347 | fi |
|
|
348 | } |
|
|
349 | |
|
|
350 | perl_remove_temppath() { |
|
|
351 | debug-print-function $FUNCNAME "$@" |
|
|
352 | |
|
|
353 | find "${D}" -type f -not -name '*.so' -print0 | while read -rd '' f ; do |
|
|
354 | if file "${f}" | grep -q -i " text" ; then |
|
|
355 | grep -q "${D}" "${f}" && ewarn "QA: File contains a temporary path ${f}" |
|
|
356 | sed -i -e "s:${D}:/:g" "${f}" |
|
|
357 | fi |
|
|
358 | done |
|
|
359 | } |
|
|
360 | |
|
|
361 | perl_link_duallife_scripts() { |
|
|
362 | debug-print-function $FUNCNAME "$@" |
|
|
363 | if [[ ${CATEGORY} != perl-core ]] || ! has_version ">=dev-lang/perl-5.8.8-r8" ; then |
|
|
364 | return 0 |
|
|
365 | fi |
|
|
366 | |
|
|
367 | perl_set_eprefix |
|
|
368 | |
|
|
369 | local i ff |
|
|
370 | if has "${EBUILD_PHASE:-none}" "postinst" "postrm" ; then |
|
|
371 | for i in "${DUALLIFESCRIPTS[@]}" ; do |
|
|
372 | alternatives_auto_makesym "/${i}" "/${i}-[0-9]*" |
|
|
373 | done |
|
|
374 | for i in "${DUALLIFEMAN[@]}" ; do |
|
|
375 | ff=`echo "${EROOT}"/${i%.1}-${PV}-${P}.1*` |
|
|
376 | ff=${ff##*.1} |
|
|
377 | alternatives_auto_makesym "/${i}${ff}" "/${i%.1}-[0-9]*" |
|
|
378 | done |
|
|
379 | else |
|
|
380 | pushd "${ED}" > /dev/null |
|
|
381 | for i in $(find usr/bin -maxdepth 1 -type f 2>/dev/null) ; do |
|
|
382 | mv ${i}{,-${PV}-${P}} || die |
|
|
383 | #DUALLIFESCRIPTS[${#DUALLIFESCRIPTS[*]}]=${i##*/} |
|
|
384 | DUALLIFESCRIPTS[${#DUALLIFESCRIPTS[*]}]=${i} |
|
|
385 | done |
|
|
386 | for i in $(find usr/share/man/man1 -maxdepth 1 -type f 2>/dev/null) ; do |
|
|
387 | mv ${i} ${i%.1}-${PV}-${P}.1 || die |
|
|
388 | DUALLIFEMAN[${#DUALLIFEMAN[*]}]=${i} |
|
|
389 | done |
|
|
390 | popd > /dev/null |
|
|
391 | fi |
|
|
392 | } |
|
|
393 | |
|
|
394 | perl_set_eprefix() { |
|
|
395 | debug-print-function $FUNCNAME "$@" |
|
|
396 | case ${EAPI:-0} in |
|
|
397 | 0|1|2) |
|
|
398 | if ! use prefix; then |
|
|
399 | EPREFIX= |
|
|
400 | ED=${D} |
|
|
401 | EROOT=${ROOT} |
|
|
402 | fi |
|
|
403 | ;; |
|
|
404 | esac |
|
|
405 | } |