| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 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.33 2003/02/16 04:26:21 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.70 2005/05/17 14:36:13 mcummings 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 | # The perl-module eclass is designed to allow easier installation of perl |
8 | # The perl-module eclass is designed to allow easier installation of perl |
| 8 | # modules, and their incorporation into the Gentoo Linux system. |
9 | # modules, and their incorporation into the Gentoo Linux system. |
| 9 | |
10 | |
| 10 | #first inherit the pkg_postinst() and pkg_postrm() functions |
|
|
| 11 | inherit perl-post |
|
|
| 12 | |
|
|
| 13 | ECLASS=perl-module |
11 | ECLASS=perl-module |
| 14 | INHERITED="$INHERITED $ECLASS" |
12 | INHERITED="${INHERITED} ${ECLASS}" |
| 15 | |
13 | |
|
|
14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 16 | EXPORT_FUNCTIONS src_compile src_install src_test |
15 | src_compile src_install src_test \ |
|
|
16 | perlinfo updatepod |
| 17 | |
17 | |
| 18 | eval `perl '-V:version'` |
18 | # 2005.04.28 mcummings |
| 19 | DEPEND="sys-devel/perl |
19 | # Mounting problems with src_test functions has forced me to make the |
| 20 | >=dev-perl/ExtUtils-MakeMaker-6.05-r1 |
20 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
| 21 | ${DEPEND}" |
21 | # is generally necessary. I've left a block to make sure we still need to set |
|
|
22 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
|
|
23 | # as many bug reports as we have lately. |
|
|
24 | |
|
|
25 | # 2004.05.10 rac |
|
|
26 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
|
|
27 | # actuality, this should be handled in the perl ebuild, so every perl |
|
|
28 | # ebuild should block versions of MakeMaker older than the one it |
|
|
29 | # carries. in the meantime, since we have dumped support for MakeMaker |
|
|
30 | # <6.11 and the associated broken DESTDIR handling, block here to save |
|
|
31 | # people from sandbox trouble. |
|
|
32 | # |
|
|
33 | # 2004.05.25 rac |
|
|
34 | # for the same reasons, make the perl dep >=5.8.2 to get everybody |
|
|
35 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
|
|
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 | |
|
|
61 | |
|
|
62 | |
|
|
63 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
| 22 | SRC_PREP="no" |
64 | SRC_PREP="no" |
|
|
65 | SRC_TEST="skip" |
|
|
66 | |
|
|
67 | PERL_VERSION="" |
|
|
68 | SITE_ARCH="" |
|
|
69 | SITE_LIB="" |
|
|
70 | VENDOR_LIB="" |
|
|
71 | VENDOR_ARCH="" |
|
|
72 | ARCH_LIB="" |
|
|
73 | POD_DIR="" |
|
|
74 | BUILDER_VER="" |
| 23 | |
75 | |
| 24 | perl-module_src_prep() { |
76 | perl-module_src_prep() { |
| 25 | |
77 | |
|
|
78 | perlinfo |
|
|
79 | |
|
|
80 | export PERL_MM_USE_DEFAULT=1 |
|
|
81 | |
|
|
82 | |
| 26 | SRC_PREP="yes" |
83 | SRC_PREP="yes" |
|
|
84 | if [ -f ${S}/Build.PL ]; then |
|
|
85 | if [ -z ${BUILDER_VER} ]; then |
|
|
86 | eerror |
|
|
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 |
|
|
96 | else |
| 27 | perl Makefile.PL ${myconf} \ |
97 | perl Makefile.PL ${myconf} \ |
| 28 | PREFIX=${D}/usr |
98 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
99 | fi |
| 29 | } |
100 | } |
| 30 | |
101 | |
| 31 | perl-module_src_compile() { |
102 | perl-module_src_compile() { |
| 32 | |
103 | |
|
|
104 | perlinfo |
| 33 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
105 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
106 | if [ -z ${BUILDER_VER} ]; then |
| 34 | make ${mymake} || die "compilation failed" |
107 | make ${mymake} || die "compilation failed" |
|
|
108 | else |
|
|
109 | perl ${S}/Build build |
|
|
110 | fi |
|
|
111 | |
| 35 | } |
112 | } |
| 36 | |
113 | |
| 37 | perl-module_src_test() { |
114 | perl-module_src_test() { |
| 38 | make test |
115 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
116 | perlinfo |
|
|
117 | if [ -z ${BUILDER_VER} ]; then |
|
|
118 | make test || die "test failed" |
|
|
119 | else |
|
|
120 | perl ${S}/Build test || die "test failed" |
|
|
121 | fi |
|
|
122 | fi |
| 39 | } |
123 | } |
| 40 | |
124 | |
| 41 | perl-module_src_install() { |
125 | perl-module_src_install() { |
| 42 | |
126 | |
| 43 | perl-post_perlinfo |
127 | perlinfo |
| 44 | dodir ${POD_DIR} |
|
|
| 45 | |
128 | |
| 46 | test -z ${mytargets} && mytargets="install" |
129 | test -z ${mytargets} && mytargets="install" |
|
|
130 | |
|
|
131 | if [ -z ${BUILDER_VER} ]; then |
|
|
132 | make ${myinst} ${mytargets} || die |
|
|
133 | else |
|
|
134 | perl ${S}/Build install |
|
|
135 | fi |
|
|
136 | |
|
|
137 | fixlocalpod |
|
|
138 | |
|
|
139 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
|
|
140 | STAT=`file $FILE| grep -i " text"` |
|
|
141 | if [ "${STAT}x" != "x" ]; then |
|
|
142 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
143 | fi |
|
|
144 | 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 | } |
|
|
153 | |
|
|
154 | |
|
|
155 | perl-module_pkg_setup() { |
|
|
156 | |
|
|
157 | perlinfo |
|
|
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 | |
| 47 | eval `perl '-V:installsitearch'` |
186 | eval `perl '-V:installsitearch'` |
| 48 | SITE_ARCH=${installsitearch} |
187 | SITE_ARCH=${installsitearch} |
|
|
188 | |
|
|
189 | eval `perl '-V:installsitearch'` |
|
|
190 | SITE_LIB=${installsitearch} |
|
|
191 | |
| 49 | eval `perl '-V:installarchlib'` |
192 | eval `perl '-V:installarchlib'` |
| 50 | ARCH_LIB=${installarchlib} |
193 | ARCH_LIB=${installarchlib} |
| 51 | |
|
|
| 52 | |
194 | |
| 53 | make \ |
195 | eval `perl '-V:installvendorlib'` |
| 54 | PREFIX=${D}/usr \ |
196 | VENDOR_LIB=${installvendorlib} |
| 55 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 56 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 57 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 58 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 59 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 60 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 61 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 62 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 63 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 64 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 65 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 66 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 67 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 68 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 69 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 70 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 71 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
| 72 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
| 73 | ${myinst} \ |
|
|
| 74 | ${mytargets} || die |
|
|
| 75 | |
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 |
|
|
207 | fi |
|
|
208 | |
|
|
209 | if [ -f /usr/bin/perl ] |
|
|
210 | then |
|
|
211 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
212 | fi |
|
|
213 | } |
|
|
214 | |
|
|
215 | fixlocalpod() { |
|
|
216 | perlinfo |
|
|
217 | dodir ${POD_DIR} |
| 76 | |
218 | |
| 77 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
219 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 78 | then |
220 | then |
| 79 | touch ${D}/${POD_DIR}/${P}.pod |
221 | touch ${D}/${POD_DIR}/${P}.pod |
| 80 | sed -e "s:${D}::g" \ |
222 | sed -e "s:${D}::g" \ |
| … | |
… | |
| 92 | touch ${D}/${POD_DIR}/${P}.pod.site |
234 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 93 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
235 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 94 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
236 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 95 | fi |
237 | fi |
| 96 | |
238 | |
| 97 | dodoc Change* MANIFEST* README* ${mydoc} |
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 |
| 98 | } |
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 |
|
|
259 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
260 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
261 | rm -f ${FILE} |
|
|
262 | done |
|
|
263 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
|
|
264 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
|
|
265 | rm -f ${FILE} |
|
|
266 | done |
|
|
267 | fi |
|
|
268 | } |