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