| 1 | # Copyright 1999-2004 Gentoo Foundation |
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.66 2005/03/14 15:09:14 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.83 2006/02/28 02:56:48 vapier 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 src_compile src_install src_test perlinfo fixlocalpod updatepod |
| 15 | src_compile src_install src_test \ |
13 | |
| 16 | perlinfo updatepod |
14 | # 2005.04.28 mcummings |
|
|
15 | # Mounting problems with src_test functions has forced me to make the |
|
|
16 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
|
|
17 | # is generally necessary. I've left a block to make sure we still need to set |
|
|
18 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
|
|
19 | # as many bug reports as we have lately. |
| 17 | |
20 | |
| 18 | # 2004.05.10 rac |
21 | # 2004.05.10 rac |
| 19 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
22 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
| 20 | # actuality, this should be handled in the perl ebuild, so every perl |
23 | # actuality, this should be handled in the perl ebuild, so every perl |
| 21 | # ebuild should block versions of MakeMaker older than the one it |
24 | # ebuild should block versions of MakeMaker older than the one it |
| … | |
… | |
| 35 | # Updated eclass to include a specific function for dealing with perlocal.pods - |
38 | # Updated eclass to include a specific function for dealing with perlocal.pods - |
| 36 | # this should avoid the conflicts we've been running into with the introduction |
39 | # this should avoid the conflicts we've been running into with the introduction |
| 37 | # of file collision features by giving us a single exportable function to deal |
40 | # of file collision features by giving us a single exportable function to deal |
| 38 | # with the pods. Modifications to the eclass provided by Yaakov S |
41 | # with the pods. Modifications to the eclass provided by Yaakov S |
| 39 | # <yselkowitz@hotmail.com> in bug 83622 |
42 | # <yselkowitz@hotmail.com> in bug 83622 |
|
|
43 | # |
|
|
44 | # <later the same day> |
|
|
45 | # The long awaited (by me) fix for automagically detecting and dealing |
|
|
46 | # with module-build dependancies. I've chosen not to make it a default dep since |
|
|
47 | # this adds overhead to people that might not otherwise need it, and instead |
|
|
48 | # modified the eclass to detect the existence of a Build.PL and behave |
|
|
49 | # accordingly. This will fix issues with g-cpan builds that needs module-build |
|
|
50 | # support, as well as get rid of the (annoying) style=builder vars. I know of |
|
|
51 | # only one module that needed to be hacked for this, Class-MethodMaker-2.05, but |
|
|
52 | # that module has a bad Build.PL to begin with. Ebuilds should continue to |
|
|
53 | # DEPEND on module-build<-version> as needed, but there should be no need for |
|
|
54 | # the style directive any more (especially since it isn't in the eclass |
|
|
55 | # anymore). Enjoy! |
|
|
56 | # |
|
|
57 | # 2005.07.18 mcummings |
|
|
58 | # Fix for proper handling of $mydoc - thanks to stkn for noticing we were |
|
|
59 | # bombing out there |
|
|
60 | # |
|
|
61 | # 2005.07.19 mcummings |
|
|
62 | # Providing an override var for the use of Module::Build. While it is being |
|
|
63 | # incorporated in more and more modules, not module authors have working |
|
|
64 | # Build.PL's in place. The override is to allow for a fallback to the "classic" |
|
|
65 | # Makfile.PL - example is Class::MethodMaker, which provides a Build.PL that is |
|
|
66 | # severely broken. |
|
|
67 | # |
|
|
68 | # 2006.02.11 mcummings |
|
|
69 | # Per a conversation with solar, adding a change to the dep/rdep lines for |
|
|
70 | # minimal. Should fix bug 68367 and bug 83622, as well as other embedded builds |
|
|
71 | # that use perl components without providing perl |
| 40 | |
72 | |
| 41 | |
73 | |
|
|
74 | IUSE="minimal" |
| 42 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
75 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
|
|
76 | RDEPEND="!minimal? ( ${DEPEND} )" |
| 43 | SRC_PREP="no" |
77 | SRC_PREP="no" |
| 44 | SRC_TEST="skip" |
78 | SRC_TEST="skip" |
|
|
79 | USE_BUILDER="yes" |
| 45 | |
80 | |
| 46 | PERL_VERSION="" |
81 | PERL_VERSION="" |
| 47 | SITE_ARCH="" |
82 | SITE_ARCH="" |
| 48 | SITE_LIB="" |
83 | SITE_LIB="" |
| 49 | VENDOR_LIB="" |
84 | VENDOR_LIB="" |
| 50 | VENDOR_ARCH="" |
85 | VENDOR_ARCH="" |
| 51 | ARCH_LIB="" |
86 | ARCH_LIB="" |
| 52 | POD_DIR="" |
87 | POD_DIR="" |
|
|
88 | BUILDER_VER="" |
| 53 | |
89 | |
| 54 | perl-module_src_prep() { |
90 | perl-module_src_prep() { |
| 55 | |
91 | |
| 56 | perlinfo |
92 | perlinfo |
| 57 | |
93 | |
| 58 | export PERL_MM_USE_DEFAULT=1 |
94 | export PERL_MM_USE_DEFAULT=1 |
| 59 | |
95 | |
|
|
96 | |
| 60 | SRC_PREP="yes" |
97 | SRC_PREP="yes" |
| 61 | if [ "${style}" == "builder" ]; then |
98 | if [ -f ${S}/Build.PL ] && [ "${USE_BUILDER}" == "yes" ]; then |
|
|
99 | einfo "Using Module::Build" |
|
|
100 | if [ -z ${BUILDER_VER} ]; then |
|
|
101 | eerror |
|
|
102 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
103 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
104 | eerror "on dev-perl/module-build" |
|
|
105 | eerror "${BUILDER_VER}" |
|
|
106 | eerror |
|
|
107 | die |
|
|
108 | else |
| 62 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
109 | perl ${S}/Build.PL installdirs=vendor destdir=${D} libdoc= |
|
|
110 | fi |
| 63 | else |
111 | else |
|
|
112 | einfo "Using ExtUtils::MakeMaker" |
| 64 | perl Makefile.PL ${myconf} \ |
113 | #perl Makefile.PL ${myconf} \ |
|
|
114 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
| 65 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
115 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
| 66 | fi |
116 | fi |
| 67 | } |
117 | } |
| 68 | |
118 | |
| 69 | perl-module_src_compile() { |
119 | perl-module_src_compile() { |
| 70 | |
120 | |
|
|
121 | perlinfo |
| 71 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
122 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 72 | if [ "${style}" != "builder" ]; then |
123 | if [ -z ${BUILDER_VER} ]; then |
| 73 | make ${mymake} || die "compilation failed" |
124 | make ${mymake} || die "compilation failed" |
|
|
125 | else |
|
|
126 | perl ${S}/Build build |
| 74 | fi |
127 | fi |
| 75 | |
128 | |
|
|
129 | } |
|
|
130 | |
|
|
131 | perl-module_src_test() { |
| 76 | if [ "${SRC_TEST}" == "do" ]; then |
132 | if [ "${SRC_TEST}" == "do" ]; then |
| 77 | perl-module_src_test || die "test failed" |
133 | perlinfo |
| 78 | SRC_TEST="done" |
134 | if [ -z ${BUILDER_VER} ]; then |
|
|
135 | make test || die "test failed" |
|
|
136 | else |
|
|
137 | perl ${S}/Build test || die "test failed" |
| 79 | fi |
138 | fi |
|
|
139 | fi |
| 80 | } |
140 | } |
| 81 | |
141 | |
| 82 | perl-module_src_test() { |
142 | perl-module_src_install() { |
| 83 | if [ "${style}" == "builder" ]; then |
143 | |
| 84 | perl ${S}/Build test |
144 | perlinfo |
|
|
145 | |
|
|
146 | test -z ${mytargets} && mytargets="install" |
|
|
147 | |
|
|
148 | if [ -z ${BUILDER_VER} ]; then |
|
|
149 | make ${myinst} ${mytargets} || die |
| 85 | else |
150 | else |
| 86 | make test |
|
|
| 87 | fi |
|
|
| 88 | } |
|
|
| 89 | |
|
|
| 90 | perl-module_src_install() { |
|
|
| 91 | |
|
|
| 92 | perlinfo |
|
|
| 93 | |
|
|
| 94 | test -z ${mytargets} && mytargets="install" |
|
|
| 95 | |
|
|
| 96 | if [ "${style}" == "builder" ]; then |
|
|
| 97 | perl ${S}/Build install |
151 | perl ${S}/Build install |
| 98 | else |
|
|
| 99 | make ${myinst} ${mytargets} || die |
|
|
| 100 | fi |
152 | fi |
| 101 | |
153 | |
| 102 | fixlocalpod |
154 | fixlocalpod |
| 103 | |
155 | |
| 104 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
156 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
| … | |
… | |
| 106 | if [ "${STAT}x" != "x" ]; then |
158 | if [ "${STAT}x" != "x" ]; then |
| 107 | sed -i -e "s:${D}:/:g" ${FILE} |
159 | sed -i -e "s:${D}:/:g" ${FILE} |
| 108 | fi |
160 | fi |
| 109 | done |
161 | done |
| 110 | |
162 | |
| 111 | for doc in Change* MANIFEST* README*; do |
163 | for doc in Change* MANIFEST* README* ${mydoc}; do |
| 112 | [ -s "$doc" ] && dodoc $doc |
164 | [ -s "$doc" ] && dodoc $doc |
| 113 | done |
165 | done |
| 114 | dodoc ${mydoc} |
|
|
| 115 | } |
166 | } |
| 116 | |
167 | |
| 117 | |
168 | |
| 118 | perl-module_pkg_setup() { |
169 | perl-module_pkg_setup() { |
| 119 | |
170 | |
| 120 | perlinfo |
171 | perlinfo |
| 121 | } |
172 | } |
| 122 | |
173 | |
| 123 | |
174 | |
| 124 | perl-module_pkg_preinst() { |
175 | perl-module_pkg_preinst() { |
| 125 | |
176 | |
| 126 | perlinfo |
177 | perlinfo |
| 127 | } |
178 | } |
| 128 | |
179 | |
| 129 | perl-module_pkg_postinst() { |
180 | perl-module_pkg_postinst() { |
| 130 | |
181 | |
| 131 | updatepod |
182 | updatepod |
| 132 | } |
183 | } |
| 133 | |
184 | |
| 134 | perl-module_pkg_prerm() { |
185 | perl-module_pkg_prerm() { |
| 135 | |
186 | |
| 136 | updatepod |
187 | updatepod |
| 137 | } |
188 | } |
| 138 | |
189 | |
| 139 | perl-module_pkg_postrm() { |
190 | perl-module_pkg_postrm() { |
| 140 | |
191 | |
| 141 | updatepod |
192 | updatepod |
| 142 | } |
193 | } |
| 143 | |
194 | |
| 144 | perlinfo() { |
195 | perlinfo() { |
| 145 | |
196 | |
|
|
197 | local version |
| 146 | eval `perl '-V:version'` |
198 | eval `perl '-V:version'` |
| 147 | PERL_VERSION=${version} |
199 | PERL_VERSION=${version} |
| 148 | |
200 | |
|
|
201 | local installsitearch |
| 149 | eval `perl '-V:installsitearch'` |
202 | eval `perl '-V:installsitearch'` |
| 150 | SITE_ARCH=${installsitearch} |
203 | SITE_ARCH=${installsitearch} |
| 151 | |
204 | |
|
|
205 | local installsitelib |
| 152 | eval `perl '-V:installsitearch'` |
206 | eval `perl '-V:installsitelib'` |
| 153 | SITE_LIB=${installsitearch} |
207 | SITE_LIB=${installsitelib} |
| 154 | |
208 | |
|
|
209 | local installarchlib |
| 155 | eval `perl '-V:installarchlib'` |
210 | eval `perl '-V:installarchlib'` |
| 156 | ARCH_LIB=${installarchlib} |
211 | ARCH_LIB=${installarchlib} |
| 157 | |
212 | |
|
|
213 | local installvendorlib |
| 158 | eval `perl '-V:installvendorlib'` |
214 | eval `perl '-V:installvendorlib'` |
| 159 | VENDOR_LIB=${installvendorlib} |
215 | VENDOR_LIB=${installvendorlib} |
| 160 | |
216 | |
|
|
217 | local installvendorarch |
| 161 | eval `perl '-V:installvendorarch'` |
218 | eval `perl '-V:installvendorarch'` |
| 162 | VENDOR_ARCH=${installvendorarch} |
219 | VENDOR_ARCH=${installvendorarch} |
| 163 | |
220 | |
|
|
221 | if [ "${USE_BUILDER}" == "yes" ]; then |
|
|
222 | if [ -f ${S}/Build.PL ]; then |
|
|
223 | if [ ${PN} == "module-build" ]; then |
|
|
224 | BUILDER_VER="1" # A bootstrapping if you will |
|
|
225 | else |
|
|
226 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
227 | fi |
|
|
228 | fi |
|
|
229 | fi |
|
|
230 | |
| 164 | if [ -f /usr/bin/perl ] |
231 | if [ -f /usr/bin/perl ] |
| 165 | then |
232 | then |
| 166 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
233 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 167 | fi |
234 | fi |
| 168 | } |
235 | } |
| 169 | |
236 | |
| 170 | fixlocalpod() { |
237 | fixlocalpod() { |
| … | |
… | |
| 178 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
245 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 179 | touch ${D}/${POD_DIR}/${P}.pod.arch |
246 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 180 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
247 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 181 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
248 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 182 | fi |
249 | fi |
| 183 | |
250 | |
| 184 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
251 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 185 | then |
252 | then |
| 186 | touch ${D}/${POD_DIR}/${P}.pod |
253 | touch ${D}/${POD_DIR}/${P}.pod |
| 187 | sed -e "s:${D}::g" \ |
254 | sed -e "s:${D}::g" \ |
| 188 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
255 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 189 | touch ${D}/${POD_DIR}/${P}.pod.site |
256 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 190 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
257 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 191 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
258 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 192 | fi |
259 | fi |
| 193 | |
260 | |
| 194 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
261 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 195 | then |
262 | then |
| 196 | touch ${D}/${POD_DIR}/${P}.pod |
263 | touch ${D}/${POD_DIR}/${P}.pod |
| 197 | sed -e "s:${D}::g" \ |
264 | sed -e "s:${D}::g" \ |
| 198 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
265 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 199 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
266 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
| 200 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
267 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |