| 1 | # Copyright 2002 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.72 2005/06/27 20:20:38 agriffis Exp $ |
|
|
4 | # |
| 3 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.8 2002/05/06 14:34:55 seemant Exp $ |
6 | # Maintained by the Perl herd <perl@gentoo.org> |
|
|
7 | # |
| 5 | # 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 |
| 6 | # modules, and their incorporation into the Gentoo Linux system. |
9 | # modules, and their incorporation into the Gentoo Linux system. |
| 7 | |
10 | |
| 8 | #first inherit the pkg_postinst() and pkg_postrm() functions |
11 | ECLASS=perl-module |
| 9 | . /usr/portage/eclass/inherit.eclass || die |
12 | INHERITED="${INHERITED} ${ECLASS}" |
| 10 | inherit perl-post |
|
|
| 11 | |
13 | |
| 12 | ECLASS=base |
14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 13 | EXPORT_FUNCTIONS src_compile src_install src_test |
15 | src_compile src_install src_test |
| 14 | |
16 | |
| 15 | newdepend ">=sys-devel/perl-5" |
17 | # 2005.04.28 mcummings |
|
|
18 | # Mounting problems with src_test functions has forced me to make the |
|
|
19 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
|
|
20 | # is generally necessary. I've left a block to make sure we still need to set |
|
|
21 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
|
|
22 | # as many bug reports as we have lately. |
| 16 | |
23 | |
| 17 | base_src_compile() { |
24 | # 2004.05.10 rac |
|
|
25 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
|
|
26 | # actuality, this should be handled in the perl ebuild, so every perl |
|
|
27 | # ebuild should block versions of MakeMaker older than the one it |
|
|
28 | # carries. in the meantime, since we have dumped support for MakeMaker |
|
|
29 | # <6.11 and the associated broken DESTDIR handling, block here to save |
|
|
30 | # people from sandbox trouble. |
|
|
31 | # |
|
|
32 | # 2004.05.25 rac |
|
|
33 | # for the same reasons, make the perl dep >=5.8.2 to get everybody |
|
|
34 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
|
|
35 | # understand DESTDIR |
|
|
36 | # |
|
|
37 | # 2004.10.01 mcummings |
|
|
38 | # noticed a discrepancy in how we were sed fixing references to ${D} |
|
|
39 | # |
|
|
40 | # 2005.03.14 mcummings |
|
|
41 | # Updated eclass to include a specific function for dealing with perlocal.pods - |
|
|
42 | # this should avoid the conflicts we've been running into with the introduction |
|
|
43 | # of file collision features by giving us a single exportable function to deal |
|
|
44 | # with the pods. Modifications to the eclass provided by Yaakov S |
|
|
45 | # <yselkowitz@hotmail.com> in bug 83622 |
|
|
46 | # |
|
|
47 | # <later the same day> |
|
|
48 | # The long awaited (by me) fix for automagically detecting and dealing |
|
|
49 | # with module-build dependancies. I've chosen not to make it a default dep since |
|
|
50 | # this adds overhead to people that might not otherwise need it, and instead |
|
|
51 | # modified the eclass to detect the existence of a Build.PL and behave |
|
|
52 | # accordingly. This will fix issues with g-cpan builds that needs module-build |
|
|
53 | # support, as well as get rid of the (annoying) style=builder vars. I know of |
|
|
54 | # only one module that needed to be hacked for this, Class-MethodMaker-2.05, but |
|
|
55 | # that module has a bad Build.PL to begin with. Ebuilds should continue to |
|
|
56 | # DEPEND on module-build<-version> as needed, but there should be no need for |
|
|
57 | # the style directive any more (especially since it isn't in the eclass |
|
|
58 | # anymore). Enjoy! |
| 18 | |
59 | |
|
|
60 | |
|
|
61 | |
|
|
62 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
|
|
63 | SRC_PREP="no" |
|
|
64 | SRC_TEST="skip" |
|
|
65 | |
|
|
66 | PERL_VERSION="" |
|
|
67 | SITE_ARCH="" |
|
|
68 | SITE_LIB="" |
|
|
69 | VENDOR_LIB="" |
|
|
70 | VENDOR_ARCH="" |
|
|
71 | ARCH_LIB="" |
|
|
72 | POD_DIR="" |
|
|
73 | BUILDER_VER="" |
|
|
74 | |
|
|
75 | perl-module_src_prep() { |
|
|
76 | |
|
|
77 | perlinfo |
|
|
78 | |
|
|
79 | export PERL_MM_USE_DEFAULT=1 |
|
|
80 | |
|
|
81 | |
|
|
82 | SRC_PREP="yes" |
|
|
83 | if [ -f ${S}/Build.PL ]; then |
|
|
84 | if [ -z ${BUILDER_VER} ]; then |
|
|
85 | eerror |
|
|
86 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
87 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
88 | eerror "on dev-perl/module-build" |
|
|
89 | eerror "${BUILDER_VER}" |
|
|
90 | eerror |
|
|
91 | die |
|
|
92 | else |
|
|
93 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
94 | fi |
|
|
95 | else |
| 19 | perl Makefile.PL ${myconf} |
96 | perl Makefile.PL ${myconf} \ |
|
|
97 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
98 | fi |
|
|
99 | } |
|
|
100 | |
|
|
101 | perl-module_src_compile() { |
|
|
102 | |
|
|
103 | perlinfo |
|
|
104 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
105 | if [ -z ${BUILDER_VER} ]; then |
| 20 | make ${mymake} || die "compilation failed" |
106 | make ${mymake} || die "compilation failed" |
| 21 | } |
107 | else |
|
|
108 | perl ${S}/Build build |
|
|
109 | fi |
| 22 | |
110 | |
| 23 | base_src_test() { |
|
|
| 24 | |
|
|
| 25 | make test || die |
|
|
| 26 | } |
111 | } |
| 27 | |
112 | |
| 28 | base_src_install() { |
113 | perl-module_src_test() { |
|
|
114 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
115 | perlinfo |
|
|
116 | if [ -z ${BUILDER_VER} ]; then |
|
|
117 | make test || die "test failed" |
|
|
118 | else |
|
|
119 | perl ${S}/Build test || die "test failed" |
|
|
120 | fi |
|
|
121 | fi |
|
|
122 | } |
| 29 | |
123 | |
|
|
124 | perl-module_src_install() { |
|
|
125 | |
|
|
126 | perlinfo |
|
|
127 | |
|
|
128 | test -z ${mytargets} && mytargets="install" |
|
|
129 | |
|
|
130 | if [ -z ${BUILDER_VER} ]; then |
|
|
131 | make ${myinst} ${mytargets} || die |
|
|
132 | else |
|
|
133 | perl ${S}/Build install |
|
|
134 | fi |
|
|
135 | |
|
|
136 | fixlocalpod |
|
|
137 | |
|
|
138 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
|
|
139 | STAT=`file $FILE| grep -i " text"` |
|
|
140 | if [ "${STAT}x" != "x" ]; then |
|
|
141 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
142 | fi |
|
|
143 | done |
|
|
144 | |
|
|
145 | for doc in Change* MANIFEST* README*; do |
|
|
146 | [ -s "$doc" ] && dodoc $doc |
|
|
147 | done |
|
|
148 | if [ -s "${mydoc}" ]; then |
|
|
149 | dodoc ${mydoc} |
|
|
150 | fi |
|
|
151 | } |
|
|
152 | |
|
|
153 | |
|
|
154 | perl-module_pkg_setup() { |
|
|
155 | |
|
|
156 | perlinfo |
|
|
157 | } |
|
|
158 | |
|
|
159 | |
|
|
160 | perl-module_pkg_preinst() { |
|
|
161 | |
|
|
162 | perlinfo |
|
|
163 | } |
|
|
164 | |
|
|
165 | perl-module_pkg_postinst() { |
|
|
166 | |
|
|
167 | updatepod |
|
|
168 | } |
|
|
169 | |
|
|
170 | perl-module_pkg_prerm() { |
|
|
171 | |
|
|
172 | updatepod |
|
|
173 | } |
|
|
174 | |
|
|
175 | perl-module_pkg_postrm() { |
|
|
176 | |
|
|
177 | updatepod |
|
|
178 | } |
|
|
179 | |
|
|
180 | perlinfo() { |
|
|
181 | |
|
|
182 | eval `perl '-V:version'` |
|
|
183 | PERL_VERSION=${version} |
|
|
184 | |
|
|
185 | eval `perl '-V:installsitearch'` |
|
|
186 | SITE_ARCH=${installsitearch} |
|
|
187 | |
|
|
188 | eval `perl '-V:installsitearch'` |
|
|
189 | SITE_LIB=${installsitearch} |
|
|
190 | |
|
|
191 | eval `perl '-V:installarchlib'` |
|
|
192 | ARCH_LIB=${installarchlib} |
|
|
193 | |
|
|
194 | eval `perl '-V:installvendorlib'` |
|
|
195 | VENDOR_LIB=${installvendorlib} |
|
|
196 | |
|
|
197 | eval `perl '-V:installvendorarch'` |
|
|
198 | VENDOR_ARCH=${installvendorarch} |
|
|
199 | |
|
|
200 | if [ -f ${S}/Build.PL ]; then |
|
|
201 | if [ ${PN} == "module-build" ]; then |
|
|
202 | BUILDER_VER="1" # A bootstrapping if you will |
|
|
203 | else |
|
|
204 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
205 | fi |
|
|
206 | fi |
|
|
207 | |
|
|
208 | if [ -f /usr/bin/perl ] |
|
|
209 | then |
|
|
210 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
211 | fi |
|
|
212 | } |
|
|
213 | |
|
|
214 | fixlocalpod() { |
|
|
215 | perlinfo |
| 30 | dodir ${POD_DIR} |
216 | dodir ${POD_DIR} |
| 31 | |
|
|
| 32 | make \ |
|
|
| 33 | PREFIX=${D}/usr \ |
|
|
| 34 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 35 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 36 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 37 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 38 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 39 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 40 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 41 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 42 | ${myinst} \ |
|
|
| 43 | install || die |
|
|
| 44 | |
217 | |
|
|
218 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
219 | then |
|
|
220 | touch ${D}/${POD_DIR}/${P}.pod |
| 45 | sed -e "s:${D}::g" \ |
221 | sed -e "s:${D}::g" \ |
| 46 | ${D}/${ARCH_LIB}/perllocal.pod \ |
222 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 47 | > ${D}/${POD_DIR}/${P}.pod |
223 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 48 | |
224 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 49 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
225 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
226 | fi |
|
|
227 | |
|
|
228 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
229 | then |
|
|
230 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
231 | sed -e "s:${D}::g" \ |
|
|
232 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
233 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
234 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
235 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
236 | fi |
| 50 | |
237 | |
| 51 | dodoc Change* MANIFEST README* ${mydoc} |
238 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
|
|
239 | then |
|
|
240 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
241 | sed -e "s:${D}::g" \ |
|
|
242 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
243 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
|
|
244 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
|
|
245 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
|
|
246 | fi |
| 52 | } |
247 | } |
|
|
248 | |
|
|
249 | updatepod() { |
|
|
250 | perlinfo |
|
|
251 | |
|
|
252 | if [ -d "${POD_DIR}" ] |
|
|
253 | then |
|
|
254 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
255 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
256 | rm -f ${FILE} |
|
|
257 | done |
|
|
258 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
259 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
260 | rm -f ${FILE} |
|
|
261 | done |
|
|
262 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
|
|
263 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
|
|
264 | rm -f ${FILE} |
|
|
265 | done |
|
|
266 | fi |
|
|
267 | } |