| 1 | # Copyright 1999-2004 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.60 2004/05/01 22:03:12 rac Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.69 2005/05/14 14:06:39 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 | # Maintained by the Perl herd <perl@gentoo.org> |
| 7 | # |
7 | # |
| 8 | # 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 |
| … | |
… | |
| 13 | |
13 | |
| 14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 15 | src_compile src_install src_test \ |
15 | src_compile src_install src_test \ |
| 16 | perlinfo updatepod |
16 | perlinfo updatepod |
| 17 | |
17 | |
|
|
18 | # 2005.04.28 mcummings |
|
|
19 | # Mounting problems with src_test functions has forced me to make the |
|
|
20 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
|
|
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. |
| 18 | |
24 | |
| 19 | DEPEND="dev-lang/perl" |
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" |
| 20 | SRC_PREP="no" |
64 | SRC_PREP="no" |
| 21 | SRC_TEST="skip" |
65 | SRC_TEST="skip" |
| 22 | |
66 | |
| 23 | PERL_VERSION="" |
67 | PERL_VERSION="" |
| 24 | SITE_ARCH="" |
68 | SITE_ARCH="" |
| 25 | SITE_LIB="" |
69 | SITE_LIB="" |
|
|
70 | VENDOR_LIB="" |
|
|
71 | VENDOR_ARCH="" |
| 26 | ARCH_LIB="" |
72 | ARCH_LIB="" |
| 27 | POD_DIR="" |
73 | POD_DIR="" |
|
|
74 | BUILDER_VER="" |
| 28 | |
75 | |
| 29 | perl-module_src_prep() { |
76 | perl-module_src_prep() { |
| 30 | |
77 | |
| 31 | perlinfo |
78 | perlinfo |
| 32 | |
79 | |
|
|
80 | export PERL_MM_USE_DEFAULT=1 |
|
|
81 | |
|
|
82 | |
| 33 | SRC_PREP="yes" |
83 | SRC_PREP="yes" |
| 34 | if [ "${style}" == "builder" ]; then |
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 |
| 35 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
94 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
95 | fi |
| 36 | else |
96 | else |
| 37 | perl Makefile.PL ${myconf} \ |
97 | perl Makefile.PL ${myconf} \ |
| 38 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
98 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
| 39 | fi |
99 | fi |
| 40 | } |
100 | } |
| 41 | |
101 | |
| 42 | perl-module_src_compile() { |
102 | perl-module_src_compile() { |
| 43 | |
103 | |
|
|
104 | perlinfo |
| 44 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
105 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 45 | if [ "${style}" != "builder" ]; then |
106 | if [ -z ${BUILDER_VER} ]; then |
| 46 | make ${mymake} || die "compilation failed" |
107 | make ${mymake} || die "compilation failed" |
|
|
108 | else |
|
|
109 | perl ${S}/Build build |
| 47 | fi |
110 | fi |
| 48 | |
111 | |
|
|
112 | } |
|
|
113 | |
|
|
114 | perl-module_src_test() { |
| 49 | if [ "${SRC_TEST}" == "do" ]; then |
115 | if [ "${SRC_TEST}" == "do" ]; then |
| 50 | perl-module_src_test || die "test failed" |
116 | perlinfo |
| 51 | SRC_TEST="done" |
117 | if [ -z ${BUILDER_VER} ]; then |
| 52 | fi |
118 | make test || die "test failed" |
| 53 | } |
|
|
| 54 | |
|
|
| 55 | perl-module_src_test() { |
|
|
| 56 | if [ "${style}" == "builder" ]; then |
|
|
| 57 | perl ${S}/Build test |
|
|
| 58 | else |
119 | else |
| 59 | make test |
120 | perl ${S}/Build test || die "test failed" |
|
|
121 | fi |
| 60 | fi |
122 | fi |
| 61 | } |
123 | } |
| 62 | |
124 | |
| 63 | perl-module_src_install() { |
125 | perl-module_src_install() { |
| 64 | |
126 | |
| 65 | perlinfo |
127 | perlinfo |
| 66 | dodir ${POD_DIR} |
|
|
| 67 | |
128 | |
| 68 | test -z ${mytargets} && mytargets="install" |
129 | test -z ${mytargets} && mytargets="install" |
| 69 | |
130 | |
| 70 | if [ "${style}" == "builder" ]; then |
131 | if [ -z ${BUILDER_VER} ]; then |
|
|
132 | make ${myinst} ${mytargets} || die |
|
|
133 | else |
| 71 | perl ${S}/Build install |
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 | dodoc ${mydoc} |
|
|
150 | } |
|
|
151 | |
|
|
152 | |
|
|
153 | perl-module_pkg_setup() { |
|
|
154 | |
|
|
155 | perlinfo |
|
|
156 | } |
|
|
157 | |
|
|
158 | |
|
|
159 | perl-module_pkg_preinst() { |
|
|
160 | |
|
|
161 | perlinfo |
|
|
162 | } |
|
|
163 | |
|
|
164 | perl-module_pkg_postinst() { |
|
|
165 | |
|
|
166 | updatepod |
|
|
167 | } |
|
|
168 | |
|
|
169 | perl-module_pkg_prerm() { |
|
|
170 | |
|
|
171 | updatepod |
|
|
172 | } |
|
|
173 | |
|
|
174 | perl-module_pkg_postrm() { |
|
|
175 | |
|
|
176 | updatepod |
|
|
177 | } |
|
|
178 | |
|
|
179 | perlinfo() { |
|
|
180 | |
|
|
181 | eval `perl '-V:version'` |
|
|
182 | PERL_VERSION=${version} |
|
|
183 | |
|
|
184 | eval `perl '-V:installsitearch'` |
|
|
185 | SITE_ARCH=${installsitearch} |
|
|
186 | |
|
|
187 | eval `perl '-V:installsitearch'` |
|
|
188 | SITE_LIB=${installsitearch} |
|
|
189 | |
|
|
190 | eval `perl '-V:installarchlib'` |
|
|
191 | ARCH_LIB=${installarchlib} |
|
|
192 | |
|
|
193 | eval `perl '-V:installvendorlib'` |
|
|
194 | VENDOR_LIB=${installvendorlib} |
|
|
195 | |
|
|
196 | eval `perl '-V:installvendorarch'` |
|
|
197 | VENDOR_ARCH=${installvendorarch} |
|
|
198 | |
|
|
199 | if [ -f ${S}/Build.PL ]; then |
|
|
200 | if [ ${PN} == "module-build" ]; then |
|
|
201 | BUILDER_VER="1" # A bootstrapping if you will |
| 72 | else |
202 | else |
| 73 | make ${myinst} ${mytargets} || die |
203 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
| 74 | fi |
204 | fi |
|
|
205 | fi |
|
|
206 | |
|
|
207 | if [ -f /usr/bin/perl ] |
|
|
208 | then |
|
|
209 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
210 | fi |
|
|
211 | } |
|
|
212 | |
|
|
213 | fixlocalpod() { |
|
|
214 | perlinfo |
|
|
215 | dodir ${POD_DIR} |
| 75 | |
216 | |
| 76 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
217 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 77 | then |
218 | then |
| 78 | touch ${D}/${POD_DIR}/${P}.pod |
219 | touch ${D}/${POD_DIR}/${P}.pod |
| 79 | sed -e "s:${D}::g" \ |
220 | sed -e "s:${D}::g" \ |
| … | |
… | |
| 91 | touch ${D}/${POD_DIR}/${P}.pod.site |
232 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 92 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
233 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 93 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
234 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 94 | fi |
235 | fi |
| 95 | |
236 | |
| 96 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
237 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 97 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
| 98 | done |
|
|
| 99 | |
|
|
| 100 | for doc in Change* MANIFEST* README*; do |
|
|
| 101 | [ -s "$doc" ] && dodoc $doc |
|
|
| 102 | done |
|
|
| 103 | dodoc ${mydoc} |
|
|
| 104 | } |
|
|
| 105 | |
|
|
| 106 | |
|
|
| 107 | perl-module_pkg_setup() { |
|
|
| 108 | |
|
|
| 109 | perlinfo |
|
|
| 110 | } |
|
|
| 111 | |
|
|
| 112 | |
|
|
| 113 | perl-module_pkg_preinst() { |
|
|
| 114 | |
|
|
| 115 | perlinfo |
|
|
| 116 | } |
|
|
| 117 | |
|
|
| 118 | perl-module_pkg_postinst() { |
|
|
| 119 | |
|
|
| 120 | updatepod |
|
|
| 121 | } |
|
|
| 122 | |
|
|
| 123 | perl-module_pkg_prerm() { |
|
|
| 124 | |
|
|
| 125 | updatepod |
|
|
| 126 | } |
|
|
| 127 | |
|
|
| 128 | perl-module_pkg_postrm() { |
|
|
| 129 | |
|
|
| 130 | updatepod |
|
|
| 131 | } |
|
|
| 132 | |
|
|
| 133 | perlinfo() { |
|
|
| 134 | |
|
|
| 135 | if [ -f /usr/bin/perl ] |
|
|
| 136 | then |
238 | then |
| 137 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
239 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
240 | sed -e "s:${D}::g" \ |
|
|
241 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
242 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
|
|
243 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
|
|
244 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
| 138 | fi |
245 | fi |
| 139 | eval `perl '-V:version'` |
|
|
| 140 | PERL_VERSION=${version} |
|
|
| 141 | eval `perl '-V:installsitearch'` |
|
|
| 142 | SITE_ARCH=${installsitearch} |
|
|
| 143 | eval `perl '-V:installarchlib'` |
|
|
| 144 | ARCH_LIB=${installarchlib} |
|
|
| 145 | eval `perl '-V:installarchlib'` |
|
|
| 146 | ARCH_LIB=${installarchlib} |
|
|
| 147 | eval `perl '-V:installsitearch'` |
|
|
| 148 | SITE_LIB=${installsitearch} |
|
|
| 149 | } |
246 | } |
| 150 | |
247 | |
| 151 | updatepod() { |
248 | updatepod() { |
| 152 | perlinfo |
249 | perlinfo |
| 153 | |
250 | |
| … | |
… | |
| 159 | done |
256 | done |
| 160 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
257 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 161 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
258 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 162 | rm -f ${FILE} |
259 | rm -f ${FILE} |
| 163 | done |
260 | done |
|
|
261 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
|
|
262 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
|
|
263 | rm -f ${FILE} |
|
|
264 | done |
| 164 | fi |
265 | fi |
| 165 | } |
266 | } |