| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2009 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.70 2005/05/17 14:36:13 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.125 2010/06/16 08:54:46 tove Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 6 | # Maintained by the Perl herd <perl@gentoo.org> |
6 | |
| 7 | # |
7 | # @ECLASS: perl-module.eclass |
|
|
8 | # @MAINTAINER: |
|
|
9 | # perl@gentoo.org |
|
|
10 | # @BLURB: eclass for perl modules |
|
|
11 | # @DESCRIPTION: |
| 8 | # 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 |
| 9 | # modules, and their incorporation into the Gentoo Linux system. |
13 | # modules, and their incorporation into the Gentoo Linux system. |
| 10 | |
14 | |
| 11 | ECLASS=perl-module |
15 | inherit eutils base |
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
16 | [[ ${CATEGORY} == "perl-core" ]] && inherit alternatives |
| 13 | |
17 | |
|
|
18 | PERL_EXPF="src_unpack src_compile src_test src_install" |
|
|
19 | |
|
|
20 | case "${EAPI:-0}" in |
|
|
21 | 0|1) |
| 14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
22 | PERL_EXPF+=" pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm" |
| 15 | src_compile src_install src_test \ |
23 | ;; |
| 16 | perlinfo updatepod |
24 | 2|3) |
|
|
25 | PERL_EXPF+=" src_prepare src_configure" |
|
|
26 | [[ ${CATEGORY} == "perl-core" ]] && \ |
|
|
27 | PERL_EXPF+=" pkg_postinst pkg_postrm" |
| 17 | |
28 | |
| 18 | # 2005.04.28 mcummings |
29 | case "${GENTOO_DEPEND_ON_PERL:-yes}" in |
| 19 | # Mounting problems with src_test functions has forced me to make the |
30 | yes) |
| 20 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
31 | DEPEND="dev-lang/perl[-build]" |
| 21 | # is generally necessary. I've left a block to make sure we still need to set |
32 | RDEPEND="${DEPEND}" |
| 22 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
33 | ;; |
| 23 | # as many bug reports as we have lately. |
34 | esac |
|
|
35 | ;; |
|
|
36 | *) |
|
|
37 | DEPEND="EAPI-UNSUPPORTED" |
|
|
38 | ;; |
|
|
39 | esac |
| 24 | |
40 | |
| 25 | # 2004.05.10 rac |
41 | case "${PERL_EXPORT_PHASE_FUNCTIONS:-yes}" in |
| 26 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
42 | yes) |
| 27 | # actuality, this should be handled in the perl ebuild, so every perl |
43 | EXPORT_FUNCTIONS ${PERL_EXPF} |
| 28 | # ebuild should block versions of MakeMaker older than the one it |
44 | ;; |
| 29 | # carries. in the meantime, since we have dumped support for MakeMaker |
45 | no) |
| 30 | # <6.11 and the associated broken DESTDIR handling, block here to save |
46 | debug-print "PERL_EXPORT_PHASE_FUNCTIONS=no" |
| 31 | # people from sandbox trouble. |
47 | ;; |
| 32 | # |
48 | *) |
| 33 | # 2004.05.25 rac |
49 | DEPEND+=" PERL_EXPORT_PHASE_FUNCTIONS-UNSUPPORTED" |
| 34 | # for the same reasons, make the perl dep >=5.8.2 to get everybody |
50 | ;; |
| 35 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
51 | esac |
| 36 | # understand DESTDIR |
|
|
| 37 | # |
|
|
| 38 | # 2004.10.01 mcummings |
|
|
| 39 | # noticed a discrepancy in how we were sed fixing references to ${D} |
|
|
| 40 | # |
|
|
| 41 | # 2005.03.14 mcummings |
|
|
| 42 | # Updated eclass to include a specific function for dealing with perlocal.pods - |
|
|
| 43 | # this should avoid the conflicts we've been running into with the introduction |
|
|
| 44 | # of file collision features by giving us a single exportable function to deal |
|
|
| 45 | # with the pods. Modifications to the eclass provided by Yaakov S |
|
|
| 46 | # <yselkowitz@hotmail.com> in bug 83622 |
|
|
| 47 | # |
|
|
| 48 | # <later the same day> |
|
|
| 49 | # The long awaited (by me) fix for automagically detecting and dealing |
|
|
| 50 | # with module-build dependancies. I've chosen not to make it a default dep since |
|
|
| 51 | # this adds overhead to people that might not otherwise need it, and instead |
|
|
| 52 | # modified the eclass to detect the existence of a Build.PL and behave |
|
|
| 53 | # accordingly. This will fix issues with g-cpan builds that needs module-build |
|
|
| 54 | # support, as well as get rid of the (annoying) style=builder vars. I know of |
|
|
| 55 | # only one module that needed to be hacked for this, Class-MethodMaker-2.05, but |
|
|
| 56 | # that module has a bad Build.PL to begin with. Ebuilds should continue to |
|
|
| 57 | # DEPEND on module-build<-version> as needed, but there should be no need for |
|
|
| 58 | # the style directive any more (especially since it isn't in the eclass |
|
|
| 59 | # anymore). Enjoy! |
|
|
| 60 | |
52 | |
|
|
53 | DESCRIPTION="Based on the $ECLASS eclass" |
| 61 | |
54 | |
|
|
55 | LICENSE="${LICENSE:-|| ( Artistic GPL-1 GPL-2 GPL-3 )}" |
| 62 | |
56 | |
| 63 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
57 | [[ -z "${SRC_URI}" && -z "${MODULE_A}" ]] && MODULE_A="${MY_P:-${P}}.tar.gz" |
|
|
58 | [[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \ |
|
|
59 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION:+${MODULE_SECTION}/}${MODULE_A}" |
|
|
60 | [[ -z "${HOMEPAGE}" ]] && \ |
|
|
61 | HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}/" |
|
|
62 | |
| 64 | SRC_PREP="no" |
63 | SRC_PREP="no" |
| 65 | SRC_TEST="skip" |
64 | SRC_TEST="skip" |
|
|
65 | PREFER_BUILDPL="yes" |
| 66 | |
66 | |
| 67 | PERL_VERSION="" |
67 | pm_echovar="" |
| 68 | SITE_ARCH="" |
68 | perlinfo_done=false |
| 69 | SITE_LIB="" |
69 | |
| 70 | VENDOR_LIB="" |
70 | perl-module_src_unpack() { |
| 71 | VENDOR_ARCH="" |
71 | debug-print-function $FUNCNAME "$@" |
| 72 | ARCH_LIB="" |
72 | base_src_unpack |
| 73 | POD_DIR="" |
73 | has src_prepare ${PERL_EXPF} || perl-module_src_prepare |
| 74 | BUILDER_VER="" |
74 | } |
|
|
75 | |
|
|
76 | perl-module_src_prepare() { |
|
|
77 | debug-print-function $FUNCNAME "$@" |
|
|
78 | has src_prepare ${PERL_EXPF} && base_src_prepare |
|
|
79 | perl_fix_osx_extra |
|
|
80 | esvn_clean |
|
|
81 | } |
|
|
82 | |
|
|
83 | perl-module_src_configure() { |
|
|
84 | debug-print-function $FUNCNAME "$@" |
|
|
85 | perl-module_src_prep |
|
|
86 | } |
| 75 | |
87 | |
| 76 | perl-module_src_prep() { |
88 | perl-module_src_prep() { |
|
|
89 | debug-print-function $FUNCNAME "$@" |
|
|
90 | [[ ${SRC_PREP} = yes ]] && return 0 |
|
|
91 | SRC_PREP="yes" |
| 77 | |
92 | |
| 78 | perlinfo |
93 | perl_set_version |
|
|
94 | perl_set_eprefix |
| 79 | |
95 | |
| 80 | export PERL_MM_USE_DEFAULT=1 |
96 | export PERL_MM_USE_DEFAULT=1 |
|
|
97 | # Disable ExtUtils::AutoInstall from prompting |
|
|
98 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 81 | |
99 | |
| 82 | |
100 | if [[ ${PREFER_BUILDPL} == yes && -f Build.PL ]] ; then |
| 83 | SRC_PREP="yes" |
101 | einfo "Using Module::Build" |
| 84 | if [ -f ${S}/Build.PL ]; then |
102 | if [[ ${DEPEND} != *virtual/perl-Module-Build* && ${PN} != Module-Build ]] ; then |
| 85 | if [ -z ${BUILDER_VER} ]; then |
103 | ewarn "QA Notice: The ebuild uses Module::Build but doesn't depend on it." |
| 86 | eerror |
104 | ewarn " Add virtual/perl-Module-Build to DEPEND!" |
| 87 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
| 88 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
| 89 | eerror "on dev-perl/module-build" |
|
|
| 90 | eerror "${BUILDER_VER}" |
|
|
| 91 | eerror |
|
|
| 92 | die |
|
|
| 93 | else |
|
|
| 94 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
| 95 | fi |
105 | fi |
| 96 | else |
106 | set -- \ |
| 97 | perl Makefile.PL ${myconf} \ |
107 | --installdirs=vendor \ |
| 98 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
108 | --libdoc= \ |
|
|
109 | --destdir="${D}" \ |
|
|
110 | --create_packlist=0 \ |
|
|
111 | ${myconf} |
|
|
112 | einfo "perl Build.PL" "$@" |
|
|
113 | perl Build.PL "$@" <<< "${pm_echovar}" \ |
|
|
114 | || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
115 | elif [[ -f Makefile.PL ]] ; then |
|
|
116 | einfo "Using ExtUtils::MakeMaker" |
|
|
117 | set -- \ |
|
|
118 | PREFIX=${EPREFIX}/usr \ |
|
|
119 | INSTALLDIRS=vendor \ |
|
|
120 | INSTALLMAN3DIR='none' \ |
|
|
121 | DESTDIR="${D}" \ |
|
|
122 | ${myconf} |
|
|
123 | einfo "perl Makefile.PL" "$@" |
|
|
124 | perl Makefile.PL "$@" <<< "${pm_echovar}" \ |
|
|
125 | || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
126 | fi |
|
|
127 | if [[ ! -f Build.PL && ! -f Makefile.PL ]] ; then |
|
|
128 | einfo "No Make or Build file detected..." |
|
|
129 | return |
| 99 | fi |
130 | fi |
| 100 | } |
131 | } |
| 101 | |
132 | |
| 102 | perl-module_src_compile() { |
133 | perl-module_src_compile() { |
|
|
134 | debug-print-function $FUNCNAME "$@" |
|
|
135 | perl_set_version |
| 103 | |
136 | |
| 104 | perlinfo |
137 | has src_configure ${PERL_EXPF} || perl-module_src_prep |
| 105 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
138 | |
| 106 | if [ -z ${BUILDER_VER} ]; then |
139 | if [[ -f Build ]] ; then |
|
|
140 | ./Build build \ |
| 107 | make ${mymake} || die "compilation failed" |
141 | || die "compilation failed" |
| 108 | else |
142 | elif [[ -f Makefile ]] ; then |
| 109 | perl ${S}/Build build |
143 | emake \ |
|
|
144 | OTHERLDFLAGS="${LDFLAGS}" \ |
|
|
145 | ${mymake} \ |
|
|
146 | || die "compilation failed" |
|
|
147 | # OPTIMIZE="${CFLAGS}" \ |
| 110 | fi |
148 | fi |
| 111 | |
|
|
| 112 | } |
149 | } |
|
|
150 | |
|
|
151 | # For testers: |
|
|
152 | # This code attempts to work out your threadingness from MAKEOPTS |
|
|
153 | # and apply them to Test::Harness. |
|
|
154 | # |
|
|
155 | # If you want more verbose testing, set TEST_VERBOSE=1 |
|
|
156 | # in your bashrc | /etc/make.conf | ENV |
|
|
157 | # |
|
|
158 | # For ebuild writers: |
|
|
159 | # If you wish to enable default tests w/ 'make test' , |
|
|
160 | # |
|
|
161 | # SRC_TEST="do" |
|
|
162 | # |
|
|
163 | # If you wish to have threads run in parallel ( using the users makeopts ) |
|
|
164 | # all of the following have been tested to work. |
|
|
165 | # |
|
|
166 | # SRC_TEST="do parallel" |
|
|
167 | # SRC_TEST="parallel" |
|
|
168 | # SRC_TEST="parallel do" |
|
|
169 | # SRC_TEST=parallel |
|
|
170 | # |
| 113 | |
171 | |
| 114 | perl-module_src_test() { |
172 | perl-module_src_test() { |
| 115 | if [ "${SRC_TEST}" == "do" ]; then |
173 | debug-print-function $FUNCNAME "$@" |
| 116 | perlinfo |
174 | if has 'do' ${SRC_TEST} || has 'parallel' ${SRC_TEST} ; then |
| 117 | if [ -z ${BUILDER_VER} ]; then |
175 | if has "${TEST_VERBOSE:-0}" 0 && has 'parallel' ${SRC_TEST} ; then |
| 118 | make test || die "test failed" |
176 | export HARNESS_OPTIONS=j$(echo -j1 ${MAKEOPTS} | sed -r "s/.*(-j\s*|--jobs=)([0-9]+).*/\2/" ) |
| 119 | else |
177 | einfo "Test::Harness Jobs=${HARNESS_OPTIONS}" |
| 120 | perl ${S}/Build test || die "test failed" |
|
|
| 121 | fi |
178 | fi |
|
|
179 | ${perlinfo_done} || perl_set_version |
|
|
180 | if [[ -f Build ]] ; then |
|
|
181 | ./Build test verbose=${TEST_VERBOSE:-0} || die "test failed" |
|
|
182 | elif [[ -f Makefile ]] ; then |
|
|
183 | emake test TEST_VERBOSE=${TEST_VERBOSE:-0} || die "test failed" |
|
|
184 | fi |
| 122 | fi |
185 | fi |
| 123 | } |
186 | } |
| 124 | |
187 | |
| 125 | perl-module_src_install() { |
188 | perl-module_src_install() { |
| 126 | |
189 | debug-print-function $FUNCNAME "$@" |
| 127 | perlinfo |
190 | |
| 128 | |
191 | perl_set_version |
| 129 | test -z ${mytargets} && mytargets="install" |
192 | perl_set_eprefix |
| 130 | |
193 | |
| 131 | if [ -z ${BUILDER_VER} ]; then |
194 | local f |
|
|
195 | |
|
|
196 | if [[ -z ${mytargets} ]] ; then |
|
|
197 | case "${CATEGORY}" in |
|
|
198 | dev-perl|perl-core) mytargets="pure_install" ;; |
|
|
199 | *) mytargets="install" ;; |
|
|
200 | esac |
|
|
201 | fi |
|
|
202 | |
|
|
203 | if [[ -f Build ]] ; then |
|
|
204 | ./Build ${mytargets} \ |
|
|
205 | || die "./Build ${mytargets} failed" |
|
|
206 | elif [[ -f Makefile ]] ; then |
| 132 | make ${myinst} ${mytargets} || die |
207 | emake ${myinst} ${mytargets} \ |
| 133 | else |
208 | || die "emake ${myinst} ${mytargets} failed" |
| 134 | perl ${S}/Build install |
|
|
| 135 | fi |
209 | fi |
| 136 | |
210 | |
|
|
211 | perl_delete_module_manpages |
|
|
212 | perl_delete_localpod |
|
|
213 | perl_delete_packlist |
|
|
214 | perl_remove_temppath |
|
|
215 | |
|
|
216 | for f in Change* CHANGES README* TODO FAQ ${mydoc}; do |
|
|
217 | [[ -s ${f} ]] && dodoc ${f} |
|
|
218 | done |
|
|
219 | |
|
|
220 | perl_link_duallife_scripts |
|
|
221 | } |
|
|
222 | |
|
|
223 | perl-module_pkg_setup() { |
|
|
224 | debug-print-function $FUNCNAME "$@" |
|
|
225 | perl_set_version |
|
|
226 | } |
|
|
227 | |
|
|
228 | perl-module_pkg_preinst() { |
|
|
229 | debug-print-function $FUNCNAME "$@" |
|
|
230 | perl_set_version |
|
|
231 | } |
|
|
232 | |
|
|
233 | perl-module_pkg_postinst() { |
|
|
234 | debug-print-function $FUNCNAME "$@" |
|
|
235 | perl_link_duallife_scripts |
|
|
236 | } |
|
|
237 | |
|
|
238 | perl-module_pkg_prerm() { |
|
|
239 | debug-print-function $FUNCNAME "$@" |
|
|
240 | } |
|
|
241 | |
|
|
242 | perl-module_pkg_postrm() { |
|
|
243 | debug-print-function $FUNCNAME "$@" |
|
|
244 | perl_link_duallife_scripts |
|
|
245 | } |
|
|
246 | |
|
|
247 | perlinfo() { |
|
|
248 | debug-print-function $FUNCNAME "$@" |
|
|
249 | perl_set_version |
|
|
250 | } |
|
|
251 | |
|
|
252 | perl_set_version() { |
|
|
253 | debug-print-function $FUNCNAME "$@" |
|
|
254 | debug-print "$FUNCNAME: perlinfo_done=${perlinfo_done}" |
|
|
255 | ${perlinfo_done} && return 0 |
|
|
256 | perlinfo_done=true |
|
|
257 | |
|
|
258 | local f version install{{site,vendor}{arch,lib},archlib} |
|
|
259 | eval "$(perl -V:{version,install{{site,vendor}{arch,lib},archlib}} )" |
|
|
260 | PERL_VERSION=${version} |
|
|
261 | SITE_ARCH=${installsitearch} |
|
|
262 | SITE_LIB=${installsitelib} |
|
|
263 | ARCH_LIB=${installarchlib} |
|
|
264 | VENDOR_LIB=${installvendorlib} |
|
|
265 | VENDOR_ARCH=${installvendorarch} |
|
|
266 | } |
|
|
267 | |
| 137 | fixlocalpod |
268 | fixlocalpod() { |
|
|
269 | debug-print-function $FUNCNAME "$@" |
|
|
270 | perl_delete_localpod |
|
|
271 | } |
| 138 | |
272 | |
| 139 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
273 | perl_delete_localpod() { |
| 140 | STAT=`file $FILE| grep -i " text"` |
274 | debug-print-function $FUNCNAME "$@" |
| 141 | if [ "${STAT}x" != "x" ]; then |
275 | |
|
|
276 | find "${D}" -type f -name perllocal.pod -delete |
|
|
277 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
|
|
278 | } |
|
|
279 | |
|
|
280 | perl_fix_osx_extra() { |
|
|
281 | debug-print-function $FUNCNAME "$@" |
|
|
282 | |
|
|
283 | # Remove "AppleDouble encoded Macintosh file" |
|
|
284 | local f |
|
|
285 | find "${S}" -type f -name "._*" -print0 | while read -rd '' f ; do |
|
|
286 | einfo "Removing AppleDouble encoded Macintosh file: ${f#${S}/}" |
|
|
287 | rm -f "${f}" |
|
|
288 | f=${f#${S}/} |
|
|
289 | # f=${f//\//\/} |
|
|
290 | # f=${f//\./\.} |
|
|
291 | # sed -i "/${f}/d" "${S}"/MANIFEST || die |
|
|
292 | grep -q "${f}" "${S}"/MANIFEST && \ |
|
|
293 | elog "AppleDouble encoded Macintosh file in MANIFEST: ${f#${S}/}" |
|
|
294 | done |
|
|
295 | } |
|
|
296 | |
|
|
297 | perl_delete_module_manpages() { |
|
|
298 | debug-print-function $FUNCNAME "$@" |
|
|
299 | |
|
|
300 | perl_set_eprefix |
|
|
301 | |
|
|
302 | if [[ -d "${ED}"/usr/share/man ]] ; then |
|
|
303 | # einfo "Cleaning out stray man files" |
|
|
304 | find "${ED}"/usr/share/man -type f -name "*.3pm" -delete |
|
|
305 | find "${ED}"/usr/share/man -depth -type d -empty -delete |
|
|
306 | fi |
|
|
307 | } |
|
|
308 | |
|
|
309 | |
|
|
310 | perl_delete_packlist() { |
|
|
311 | debug-print-function $FUNCNAME "$@" |
|
|
312 | perl_set_version |
|
|
313 | if [[ -d ${D}/${VENDOR_ARCH} ]] ; then |
|
|
314 | find "${D}/${VENDOR_ARCH}" -type f -a \( -name .packlist \ |
|
|
315 | -o \( -name '*.bs' -a -empty \) \) -delete |
|
|
316 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
|
|
317 | fi |
|
|
318 | } |
|
|
319 | |
|
|
320 | perl_remove_temppath() { |
|
|
321 | debug-print-function $FUNCNAME "$@" |
|
|
322 | |
|
|
323 | find "${D}" -type f -not -name '*.so' -print0 | while read -rd '' f ; do |
|
|
324 | if file "${f}" | grep -q -i " text" ; then |
|
|
325 | grep -q "${D}" "${f}" && ewarn "QA: File contains a temporary path ${f}" |
| 142 | sed -i -e "s:${D}:/:g" ${FILE} |
326 | sed -i -e "s:${D}:/:g" "${f}" |
| 143 | fi |
327 | fi |
| 144 | done |
328 | done |
| 145 | |
|
|
| 146 | for doc in Change* MANIFEST* README*; do |
|
|
| 147 | [ -s "$doc" ] && dodoc $doc |
|
|
| 148 | done |
|
|
| 149 | if [ -s "${mydoc}" ]; then |
|
|
| 150 | dodoc ${mydoc} |
|
|
| 151 | fi |
|
|
| 152 | } |
329 | } |
| 153 | |
330 | |
| 154 | |
331 | perl_link_duallife_scripts() { |
| 155 | perl-module_pkg_setup() { |
332 | debug-print-function $FUNCNAME "$@" |
| 156 | |
333 | if [[ ${CATEGORY} != perl-core ]] || ! has_version ">=dev-lang/perl-5.8.8-r8" ; then |
| 157 | perlinfo |
334 | return 0 |
| 158 | } |
|
|
| 159 | |
|
|
| 160 | |
|
|
| 161 | perl-module_pkg_preinst() { |
|
|
| 162 | |
|
|
| 163 | perlinfo |
|
|
| 164 | } |
|
|
| 165 | |
|
|
| 166 | perl-module_pkg_postinst() { |
|
|
| 167 | |
|
|
| 168 | updatepod |
|
|
| 169 | } |
|
|
| 170 | |
|
|
| 171 | perl-module_pkg_prerm() { |
|
|
| 172 | |
|
|
| 173 | updatepod |
|
|
| 174 | } |
|
|
| 175 | |
|
|
| 176 | perl-module_pkg_postrm() { |
|
|
| 177 | |
|
|
| 178 | updatepod |
|
|
| 179 | } |
|
|
| 180 | |
|
|
| 181 | perlinfo() { |
|
|
| 182 | |
|
|
| 183 | eval `perl '-V:version'` |
|
|
| 184 | PERL_VERSION=${version} |
|
|
| 185 | |
|
|
| 186 | eval `perl '-V:installsitearch'` |
|
|
| 187 | SITE_ARCH=${installsitearch} |
|
|
| 188 | |
|
|
| 189 | eval `perl '-V:installsitearch'` |
|
|
| 190 | SITE_LIB=${installsitearch} |
|
|
| 191 | |
|
|
| 192 | eval `perl '-V:installarchlib'` |
|
|
| 193 | ARCH_LIB=${installarchlib} |
|
|
| 194 | |
|
|
| 195 | eval `perl '-V:installvendorlib'` |
|
|
| 196 | VENDOR_LIB=${installvendorlib} |
|
|
| 197 | |
|
|
| 198 | eval `perl '-V:installvendorarch'` |
|
|
| 199 | VENDOR_ARCH=${installvendorarch} |
|
|
| 200 | |
|
|
| 201 | if [ -f ${S}/Build.PL ]; then |
|
|
| 202 | if [ ${PN} == "module-build" ]; then |
|
|
| 203 | BUILDER_VER="1" # A bootstrapping if you will |
|
|
| 204 | else |
|
|
| 205 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
| 206 | fi |
335 | fi |
| 207 | fi |
|
|
| 208 | |
336 | |
| 209 | if [ -f /usr/bin/perl ] |
337 | perl_set_eprefix |
| 210 | then |
|
|
| 211 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
| 212 | fi |
|
|
| 213 | } |
|
|
| 214 | |
338 | |
| 215 | fixlocalpod() { |
339 | local i ff |
| 216 | perlinfo |
340 | if has "${EBUILD_PHASE:-none}" "postinst" "postrm" ; then |
| 217 | dodir ${POD_DIR} |
341 | for i in "${DUALLIFESCRIPTS[@]}" ; do |
| 218 | |
342 | alternatives_auto_makesym "/usr/bin/${i}" "/usr/bin/${i}-[0-9]*" |
| 219 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
343 | ff=`echo "${EROOT}"/usr/share/man/man1/${i}-${PV}-${P}.1*` |
| 220 | then |
344 | ff=${ff##*.1} |
| 221 | touch ${D}/${POD_DIR}/${P}.pod |
345 | alternatives_auto_makesym "/usr/share/man/man1/${i}.1${ff}" "/usr/share/man/man1/${i}-[0-9]*" |
| 222 | sed -e "s:${D}::g" \ |
|
|
| 223 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 224 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 225 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 226 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
| 227 | fi |
|
|
| 228 | |
|
|
| 229 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
| 230 | then |
|
|
| 231 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 232 | sed -e "s:${D}::g" \ |
|
|
| 233 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 234 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 235 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 236 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
| 237 | fi |
|
|
| 238 | |
|
|
| 239 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
|
|
| 240 | then |
|
|
| 241 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 242 | sed -e "s:${D}::g" \ |
|
|
| 243 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 244 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 245 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 246 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
|
|
| 247 | fi |
|
|
| 248 | } |
|
|
| 249 | |
|
|
| 250 | updatepod() { |
|
|
| 251 | perlinfo |
|
|
| 252 | |
|
|
| 253 | if [ -d "${POD_DIR}" ] |
|
|
| 254 | then |
|
|
| 255 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
| 256 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
| 257 | rm -f ${FILE} |
|
|
| 258 | done |
346 | done |
| 259 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
347 | else |
| 260 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
348 | pushd "${ED}" > /dev/null |
| 261 | rm -f ${FILE} |
349 | for i in $(find usr/bin -maxdepth 1 -type f 2>/dev/null) ; do |
|
|
350 | mv ${i}{,-${PV}-${P}} || die |
|
|
351 | DUALLIFESCRIPTS[${#DUALLIFESCRIPTS[*]}]=${i##*/} |
|
|
352 | if [[ -f usr/share/man/man1/${i##*/}.1 ]] ; then |
|
|
353 | mv usr/share/man/man1/${i##*/}{.1,-${PV}-${P}.1} || die |
|
|
354 | fi |
| 262 | done |
355 | done |
| 263 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
356 | popd > /dev/null |
| 264 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
357 | fi |
| 265 | rm -f ${FILE} |
358 | } |
| 266 | done |
359 | |
|
|
360 | perl_set_eprefix() { |
|
|
361 | debug-print-function $FUNCNAME "$@" |
|
|
362 | case ${EAPI:-0} in |
|
|
363 | 0|1|2) |
|
|
364 | if ! use prefix; then |
|
|
365 | EPREFIX= |
|
|
366 | ED=${D} |
|
|
367 | EROOT=${ROOT} |
| 267 | fi |
368 | fi |
|
|
369 | ;; |
|
|
370 | esac |
| 268 | } |
371 | } |