| 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.70 2005/05/17 14:36:13 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.86 2006/04/03 11:16:52 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 src_compile src_install src_test |
| 15 | src_compile src_install src_test \ |
|
|
| 16 | perlinfo updatepod |
|
|
| 17 | |
13 | |
| 18 | # 2005.04.28 mcummings |
14 | # 2005.04.28 mcummings |
| 19 | # Mounting problems with src_test functions has forced me to make the |
15 | # 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 |
16 | # 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 |
17 | # is generally necessary. I've left a block to make sure we still need to set |
| … | |
… | |
| 42 | # 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 - |
| 43 | # 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 |
| 44 | # 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 |
| 45 | # with the pods. Modifications to the eclass provided by Yaakov S |
41 | # with the pods. Modifications to the eclass provided by Yaakov S |
| 46 | # <yselkowitz@hotmail.com> in bug 83622 |
42 | # <yselkowitz@hotmail.com> in bug 83622 |
| 47 | # |
43 | # |
| 48 | # <later the same day> |
44 | # <later the same day> |
| 49 | # The long awaited (by me) fix for automagically detecting and dealing |
45 | # 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 |
46 | # 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 |
47 | # 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 |
48 | # modified the eclass to detect the existence of a Build.PL and behave |
| … | |
… | |
| 55 | # only one module that needed to be hacked for this, Class-MethodMaker-2.05, but |
51 | # 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 |
52 | # 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 |
53 | # 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 |
54 | # the style directive any more (especially since it isn't in the eclass |
| 59 | # anymore). Enjoy! |
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 |
| 60 | |
72 | |
| 61 | |
73 | |
| 62 | |
74 | IUSE="minimal" |
| 63 | 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} )" |
| 64 | SRC_PREP="no" |
77 | SRC_PREP="no" |
| 65 | SRC_TEST="skip" |
78 | SRC_TEST="skip" |
|
|
79 | USE_BUILDER="yes" |
| 66 | |
80 | |
| 67 | PERL_VERSION="" |
81 | PERL_VERSION="" |
| 68 | SITE_ARCH="" |
82 | SITE_ARCH="" |
| 69 | SITE_LIB="" |
83 | SITE_LIB="" |
| 70 | VENDOR_LIB="" |
84 | VENDOR_LIB="" |
| … | |
… | |
| 79 | |
93 | |
| 80 | export PERL_MM_USE_DEFAULT=1 |
94 | export PERL_MM_USE_DEFAULT=1 |
| 81 | |
95 | |
| 82 | |
96 | |
| 83 | SRC_PREP="yes" |
97 | SRC_PREP="yes" |
| 84 | if [ -f ${S}/Build.PL ]; then |
98 | if [ -f Makefile.PL ]; then |
|
|
99 | einfo "Using ExtUtils::MakeMaker" |
|
|
100 | #perl Makefile.PL ${myconf} \ |
|
|
101 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
|
|
102 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
103 | elif [ -f Build.PL ] && [ "${USE_BUILDER}" == "yes" ]; then |
|
|
104 | einfo "Using Module::Build" |
| 85 | if [ -z ${BUILDER_VER} ]; then |
105 | if [ -z ${BUILDER_VER} ]; then |
| 86 | eerror |
106 | eerror |
| 87 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
107 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
| 88 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
108 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
| 89 | eerror "on dev-perl/module-build" |
109 | eerror "on dev-perl/module-build" |
| 90 | eerror "${BUILDER_VER}" |
110 | eerror "${BUILDER_VER}" |
| 91 | eerror |
111 | eerror |
| 92 | die |
112 | die |
| 93 | else |
113 | else |
| 94 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
114 | perl Build.PL installdirs=vendor destdir=${D} libdoc= |
| 95 | fi |
115 | fi |
| 96 | else |
116 | else |
| 97 | perl Makefile.PL ${myconf} \ |
117 | einfo "No Make or Build file detect..." |
| 98 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
118 | return |
| 99 | fi |
119 | fi |
| 100 | } |
120 | } |
| 101 | |
121 | |
| 102 | perl-module_src_compile() { |
122 | perl-module_src_compile() { |
| 103 | |
123 | |
| … | |
… | |
| 121 | fi |
141 | fi |
| 122 | fi |
142 | fi |
| 123 | } |
143 | } |
| 124 | |
144 | |
| 125 | perl-module_src_install() { |
145 | perl-module_src_install() { |
| 126 | |
146 | |
| 127 | perlinfo |
147 | perlinfo |
| 128 | |
148 | |
| 129 | test -z ${mytargets} && mytargets="install" |
149 | test -z ${mytargets} && mytargets="install" |
| 130 | |
150 | |
| 131 | if [ -z ${BUILDER_VER} ]; then |
151 | if [ -z ${BUILDER_VER} ]; then |
| 132 | make ${myinst} ${mytargets} || die |
152 | make ${myinst} ${mytargets} || die |
| 133 | else |
153 | else |
| 134 | perl ${S}/Build install |
154 | perl ${S}/Build install |
| 135 | fi |
155 | fi |
| … | |
… | |
| 141 | if [ "${STAT}x" != "x" ]; then |
161 | if [ "${STAT}x" != "x" ]; then |
| 142 | sed -i -e "s:${D}:/:g" ${FILE} |
162 | sed -i -e "s:${D}:/:g" ${FILE} |
| 143 | fi |
163 | fi |
| 144 | done |
164 | done |
| 145 | |
165 | |
| 146 | for doc in Change* MANIFEST* README*; do |
166 | for doc in Change* MANIFEST* README* ${mydoc}; do |
| 147 | [ -s "$doc" ] && dodoc $doc |
167 | [ -s "$doc" ] && dodoc $doc |
| 148 | done |
168 | done |
| 149 | if [ -s "${mydoc}" ]; then |
|
|
| 150 | dodoc ${mydoc} |
|
|
| 151 | fi |
|
|
| 152 | } |
169 | } |
| 153 | |
170 | |
| 154 | |
171 | |
| 155 | perl-module_pkg_setup() { |
172 | perl-module_pkg_setup() { |
| 156 | |
173 | |
| 157 | perlinfo |
174 | perlinfo |
| 158 | } |
175 | } |
| 159 | |
176 | |
| 160 | |
177 | |
| 161 | perl-module_pkg_preinst() { |
178 | perl-module_pkg_preinst() { |
| 162 | |
179 | |
| 163 | perlinfo |
180 | perlinfo |
| 164 | } |
181 | } |
| 165 | |
182 | |
| 166 | perl-module_pkg_postinst() { |
183 | perl-module_pkg_postinst() { |
| 167 | |
184 | |
|
|
185 | einfo "Man pages are not installed for most modules now." |
|
|
186 | einfo "Please use perldoc instad." |
| 168 | updatepod |
187 | updatepod |
| 169 | } |
188 | } |
| 170 | |
189 | |
| 171 | perl-module_pkg_prerm() { |
190 | perl-module_pkg_prerm() { |
| 172 | |
191 | |
| 173 | updatepod |
192 | updatepod |
| 174 | } |
193 | } |
| 175 | |
194 | |
| 176 | perl-module_pkg_postrm() { |
195 | perl-module_pkg_postrm() { |
| 177 | |
196 | |
| 178 | updatepod |
197 | updatepod |
| 179 | } |
198 | } |
| 180 | |
199 | |
| 181 | perlinfo() { |
200 | perlinfo() { |
| 182 | |
201 | |
|
|
202 | local version |
| 183 | eval `perl '-V:version'` |
203 | eval `perl '-V:version'` |
| 184 | PERL_VERSION=${version} |
204 | PERL_VERSION=${version} |
| 185 | |
205 | |
|
|
206 | local installsitearch |
| 186 | eval `perl '-V:installsitearch'` |
207 | eval `perl '-V:installsitearch'` |
| 187 | SITE_ARCH=${installsitearch} |
208 | SITE_ARCH=${installsitearch} |
| 188 | |
209 | |
|
|
210 | local installsitelib |
| 189 | eval `perl '-V:installsitearch'` |
211 | eval `perl '-V:installsitelib'` |
| 190 | SITE_LIB=${installsitearch} |
212 | SITE_LIB=${installsitelib} |
| 191 | |
213 | |
|
|
214 | local installarchlib |
| 192 | eval `perl '-V:installarchlib'` |
215 | eval `perl '-V:installarchlib'` |
| 193 | ARCH_LIB=${installarchlib} |
216 | ARCH_LIB=${installarchlib} |
| 194 | |
217 | |
|
|
218 | local installvendorlib |
| 195 | eval `perl '-V:installvendorlib'` |
219 | eval `perl '-V:installvendorlib'` |
| 196 | VENDOR_LIB=${installvendorlib} |
220 | VENDOR_LIB=${installvendorlib} |
| 197 | |
221 | |
|
|
222 | local installvendorarch |
| 198 | eval `perl '-V:installvendorarch'` |
223 | eval `perl '-V:installvendorarch'` |
| 199 | VENDOR_ARCH=${installvendorarch} |
224 | VENDOR_ARCH=${installvendorarch} |
| 200 | |
225 | |
|
|
226 | if [ "${USE_BUILDER}" == "yes" ]; then |
|
|
227 | if [ ! -f ${S}/Makefile.PL ]; then |
| 201 | if [ -f ${S}/Build.PL ]; then |
228 | if [ -f ${S}/Build.PL ]; then |
| 202 | if [ ${PN} == "module-build" ]; then |
229 | if [ ${PN} == "module-build" ]; then |
| 203 | BUILDER_VER="1" # A bootstrapping if you will |
230 | BUILDER_VER="1" # A bootstrapping if you will |
| 204 | else |
231 | else |
| 205 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
232 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
| 206 | fi |
233 | fi |
|
|
234 | fi |
|
|
235 | fi |
| 207 | fi |
236 | fi |
| 208 | |
237 | |
| 209 | if [ -f /usr/bin/perl ] |
238 | if [ -f /usr/bin/perl ] |
| 210 | then |
239 | then |
| 211 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
240 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 212 | fi |
241 | fi |
| 213 | } |
242 | } |
| 214 | |
243 | |
| 215 | fixlocalpod() { |
244 | fixlocalpod() { |
| … | |
… | |
| 223 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
252 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 224 | touch ${D}/${POD_DIR}/${P}.pod.arch |
253 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 225 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
254 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 226 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
255 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 227 | fi |
256 | fi |
| 228 | |
257 | |
| 229 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
258 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 230 | then |
259 | then |
| 231 | touch ${D}/${POD_DIR}/${P}.pod |
260 | touch ${D}/${POD_DIR}/${P}.pod |
| 232 | sed -e "s:${D}::g" \ |
261 | sed -e "s:${D}::g" \ |
| 233 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
262 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 234 | touch ${D}/${POD_DIR}/${P}.pod.site |
263 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 235 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
264 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 236 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
265 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 237 | fi |
266 | fi |
| 238 | |
267 | |
| 239 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
268 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 240 | then |
269 | then |
| 241 | touch ${D}/${POD_DIR}/${P}.pod |
270 | touch ${D}/${POD_DIR}/${P}.pod |
| 242 | sed -e "s:${D}::g" \ |
271 | sed -e "s:${D}::g" \ |
| 243 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
272 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 244 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
273 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
| 245 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
274 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |