| 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.58 2004/04/02 10:22:50 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.75 2005/07/07 01:22:30 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 |
| 9 | # modules, and their incorporation into the Gentoo Linux system. |
9 | # modules, and their incorporation into the Gentoo Linux system. |
| 10 | |
10 | |
| 11 | ECLASS=perl-module |
|
|
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 13 | |
11 | |
| 14 | 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 \ |
| 15 | src_compile src_install src_test \ |
13 | src_compile src_install src_test |
| 16 | perlinfo updatepod |
|
|
| 17 | |
14 | |
|
|
15 | # 2005.04.28 mcummings |
|
|
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. |
| 18 | |
21 | |
| 19 | newdepend ">=dev-lang/perl-5.8.0-r12" |
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" |
|
|
61 | RDEPEND="${DEPEND}" |
| 20 | SRC_PREP="no" |
62 | SRC_PREP="no" |
| 21 | SRC_TEST="skip" |
63 | SRC_TEST="skip" |
| 22 | |
64 | |
| 23 | PERL_VERSION="" |
65 | PERL_VERSION="" |
| 24 | SITE_ARCH="" |
66 | SITE_ARCH="" |
| 25 | SITE_LIB="" |
67 | SITE_LIB="" |
|
|
68 | VENDOR_LIB="" |
|
|
69 | VENDOR_ARCH="" |
| 26 | ARCH_LIB="" |
70 | ARCH_LIB="" |
| 27 | POD_DIR="" |
71 | POD_DIR="" |
| 28 | MMSIXELEVEN="" |
72 | BUILDER_VER="" |
| 29 | |
73 | |
| 30 | perl-module_src_prep() { |
74 | perl-module_src_prep() { |
|
|
75 | |
|
|
76 | perlinfo |
|
|
77 | |
|
|
78 | export PERL_MM_USE_DEFAULT=1 |
|
|
79 | |
|
|
80 | |
| 31 | SRC_PREP="yes" |
81 | SRC_PREP="yes" |
| 32 | if [ "${style}" == "builder" ]; then |
82 | if [ -f ${S}/Build.PL ]; then |
|
|
83 | if [ -z ${BUILDER_VER} ]; then |
|
|
84 | eerror |
|
|
85 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
86 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
87 | eerror "on dev-perl/module-build" |
|
|
88 | eerror "${BUILDER_VER}" |
|
|
89 | eerror |
|
|
90 | die |
|
|
91 | else |
| 33 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
92 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
93 | fi |
| 34 | else |
94 | else |
| 35 | if [ "${MMSIXELEVEN}" ]; then |
|
|
| 36 | perl Makefile.PL ${myconf} \ |
95 | perl Makefile.PL ${myconf} \ |
| 37 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
96 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
97 | fi |
|
|
98 | } |
|
|
99 | |
|
|
100 | perl-module_src_compile() { |
|
|
101 | |
|
|
102 | perlinfo |
|
|
103 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
104 | if [ -z ${BUILDER_VER} ]; then |
|
|
105 | make ${mymake} || die "compilation failed" |
|
|
106 | else |
|
|
107 | perl ${S}/Build build |
|
|
108 | fi |
|
|
109 | |
|
|
110 | } |
|
|
111 | |
|
|
112 | perl-module_src_test() { |
|
|
113 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
114 | perlinfo |
|
|
115 | if [ -z ${BUILDER_VER} ]; then |
|
|
116 | make test || die "test failed" |
| 38 | else |
117 | else |
| 39 | perl Makefile.PL ${myconf} \ |
118 | perl ${S}/Build test || die "test failed" |
| 40 | PREFIX=${D}/usr INSTALLDIRS=vendor |
|
|
| 41 | fi |
|
|
| 42 | fi |
119 | fi |
| 43 | |
|
|
| 44 | } |
|
|
| 45 | |
|
|
| 46 | perl-module_src_compile() { |
|
|
| 47 | |
|
|
| 48 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
| 49 | if [ "${style}" != "builder" ]; then |
|
|
| 50 | make ${mymake} || die "compilation failed" |
|
|
| 51 | fi |
120 | fi |
| 52 | |
|
|
| 53 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
| 54 | perl-module_src_test || die "test failed" |
|
|
| 55 | SRC_TEST="done" |
|
|
| 56 | fi |
|
|
| 57 | } |
|
|
| 58 | |
|
|
| 59 | perl-module_src_test() { |
|
|
| 60 | if [ "${style}" == "builder" ]; then |
|
|
| 61 | perl ${S}/Build test |
|
|
| 62 | else |
|
|
| 63 | make test |
|
|
| 64 | fi |
|
|
| 65 | |
|
|
| 66 | } |
121 | } |
| 67 | |
122 | |
| 68 | perl-module_src_install() { |
123 | perl-module_src_install() { |
| 69 | |
124 | |
| 70 | perlinfo |
125 | perlinfo |
| 71 | dodir ${POD_DIR} |
|
|
| 72 | |
126 | |
| 73 | test -z ${mytargets} && mytargets="install" |
127 | test -z ${mytargets} && mytargets="install" |
| 74 | |
128 | |
| 75 | if [ "${style}" == "builder" ]; then |
129 | if [ -z ${BUILDER_VER} ]; then |
| 76 | perl ${S}/Build install |
|
|
| 77 | else |
|
|
| 78 | if [ "${MMSIXELEVEN}" ]; then |
|
|
| 79 | make ${myinst} ${mytargets} || die |
130 | make ${myinst} ${mytargets} || die |
| 80 | else |
131 | else |
| 81 | make \ |
132 | perl ${S}/Build install |
| 82 | PREFIX=${D}/usr \ |
|
|
| 83 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 84 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 85 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 86 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 87 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 88 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 89 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 90 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 91 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 92 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 93 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 94 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 95 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 96 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 97 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 98 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 99 | INSTALLVENDORMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 100 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
| 101 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
| 102 | ${myinst} \ |
|
|
| 103 | ${mytargets} || die |
|
|
| 104 | fi |
133 | fi |
|
|
134 | |
|
|
135 | fixlocalpod |
|
|
136 | |
|
|
137 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
|
|
138 | STAT=`file $FILE| grep -i " text"` |
|
|
139 | if [ "${STAT}x" != "x" ]; then |
|
|
140 | sed -i -e "s:${D}:/:g" ${FILE} |
| 105 | fi |
141 | fi |
|
|
142 | done |
|
|
143 | |
|
|
144 | for doc in Change* MANIFEST* README*; do |
|
|
145 | [ -s "$doc" ] && dodoc $doc |
|
|
146 | done |
|
|
147 | if [ -s "${mydoc}" ]; then |
|
|
148 | dodoc ${mydoc} |
|
|
149 | fi |
|
|
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 |
|
|
202 | else |
|
|
203 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
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} |
| 106 | |
216 | |
| 107 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
217 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 108 | then |
218 | then |
| 109 | touch ${D}/${POD_DIR}/${P}.pod |
219 | touch ${D}/${POD_DIR}/${P}.pod |
| 110 | sed -e "s:${D}::g" \ |
220 | sed -e "s:${D}::g" \ |
| … | |
… | |
| 122 | touch ${D}/${POD_DIR}/${P}.pod.site |
232 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 123 | 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 |
| 124 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
234 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 125 | fi |
235 | fi |
| 126 | |
236 | |
| 127 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
237 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 128 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
| 129 | done |
|
|
| 130 | |
|
|
| 131 | for doc in Change* MANIFEST* README*; do |
|
|
| 132 | [ -s "$doc" ] && dodoc $doc |
|
|
| 133 | done |
|
|
| 134 | dodoc ${mydoc} |
|
|
| 135 | } |
|
|
| 136 | |
|
|
| 137 | |
|
|
| 138 | perl-module_pkg_setup() { |
|
|
| 139 | |
|
|
| 140 | perlinfo |
|
|
| 141 | } |
|
|
| 142 | |
|
|
| 143 | |
|
|
| 144 | perl-module_pkg_preinst() { |
|
|
| 145 | |
|
|
| 146 | perlinfo |
|
|
| 147 | } |
|
|
| 148 | |
|
|
| 149 | perl-module_pkg_postinst() { |
|
|
| 150 | |
|
|
| 151 | updatepod |
|
|
| 152 | } |
|
|
| 153 | |
|
|
| 154 | perl-module_pkg_prerm() { |
|
|
| 155 | |
|
|
| 156 | updatepod |
|
|
| 157 | } |
|
|
| 158 | |
|
|
| 159 | perl-module_pkg_postrm() { |
|
|
| 160 | |
|
|
| 161 | updatepod |
|
|
| 162 | } |
|
|
| 163 | |
|
|
| 164 | perlinfo() { |
|
|
| 165 | |
|
|
| 166 | if [ -f /usr/bin/perl ] |
|
|
| 167 | then |
238 | then |
| 168 | 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 |
| 169 | fi |
245 | fi |
| 170 | eval `perl '-V:version'` |
|
|
| 171 | PERL_VERSION=${version} |
|
|
| 172 | eval `perl '-V:installsitearch'` |
|
|
| 173 | SITE_ARCH=${installsitearch} |
|
|
| 174 | eval `perl '-V:installarchlib'` |
|
|
| 175 | ARCH_LIB=${installarchlib} |
|
|
| 176 | eval `perl '-V:installarchlib'` |
|
|
| 177 | ARCH_LIB=${installarchlib} |
|
|
| 178 | eval `perl '-V:installsitearch'` |
|
|
| 179 | SITE_LIB=${installsitearch} |
|
|
| 180 | # handling of DESTDIR changed in makemaker 6.11 |
|
|
| 181 | MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION ge "6.11" )'` |
|
|
| 182 | |
|
|
| 183 | } |
246 | } |
| 184 | |
247 | |
| 185 | updatepod() { |
248 | updatepod() { |
| 186 | perlinfo |
249 | perlinfo |
| 187 | |
250 | |
| … | |
… | |
| 193 | done |
256 | done |
| 194 | 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 |
| 195 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
258 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 196 | rm -f ${FILE} |
259 | rm -f ${FILE} |
| 197 | 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 |
| 198 | fi |
265 | fi |
| 199 | } |
266 | } |