| 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.72 2005/06/27 20:20:38 agriffis 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 | |
13 | |
| 17 | # 2005.04.28 mcummings |
14 | # 2005.04.28 mcummings |
| 18 | # 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 |
| 19 | # 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 |
| 20 | # 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 |
| … | |
… | |
| 41 | # 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 - |
| 42 | # 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 |
| 43 | # 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 |
| 44 | # with the pods. Modifications to the eclass provided by Yaakov S |
41 | # with the pods. Modifications to the eclass provided by Yaakov S |
| 45 | # <yselkowitz@hotmail.com> in bug 83622 |
42 | # <yselkowitz@hotmail.com> in bug 83622 |
| 46 | # |
43 | # |
| 47 | # <later the same day> |
44 | # <later the same day> |
| 48 | # The long awaited (by me) fix for automagically detecting and dealing |
45 | # The long awaited (by me) fix for automagically detecting and dealing |
| 49 | # 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 |
| 50 | # 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 |
| 51 | # 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 |
| … | |
… | |
| 54 | # 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 |
| 55 | # 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 |
| 56 | # 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 |
| 57 | # 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 |
| 58 | # 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 |
| 59 | |
72 | |
| 60 | |
73 | |
| 61 | |
74 | IUSE="minimal" |
| 62 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
75 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
|
|
76 | RDEPEND="!minimal? ( ${DEPEND} )" |
| 63 | SRC_PREP="no" |
77 | SRC_PREP="no" |
| 64 | SRC_TEST="skip" |
78 | SRC_TEST="skip" |
|
|
79 | USE_BUILDER="yes" |
| 65 | |
80 | |
| 66 | PERL_VERSION="" |
81 | PERL_VERSION="" |
| 67 | SITE_ARCH="" |
82 | SITE_ARCH="" |
| 68 | SITE_LIB="" |
83 | SITE_LIB="" |
| 69 | VENDOR_LIB="" |
84 | VENDOR_LIB="" |
| … | |
… | |
| 78 | |
93 | |
| 79 | export PERL_MM_USE_DEFAULT=1 |
94 | export PERL_MM_USE_DEFAULT=1 |
| 80 | |
95 | |
| 81 | |
96 | |
| 82 | SRC_PREP="yes" |
97 | SRC_PREP="yes" |
| 83 | 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" |
| 84 | if [ -z ${BUILDER_VER} ]; then |
105 | if [ -z ${BUILDER_VER} ]; then |
| 85 | eerror |
106 | eerror |
| 86 | 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" |
| 87 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
108 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
| 88 | eerror "on dev-perl/module-build" |
109 | eerror "on dev-perl/module-build" |
| 89 | eerror "${BUILDER_VER}" |
110 | eerror "${BUILDER_VER}" |
| 90 | eerror |
111 | eerror |
| 91 | die |
112 | die |
| 92 | else |
113 | else |
| 93 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
114 | perl Build.PL installdirs=vendor destdir=${D} libdoc= |
| 94 | fi |
115 | fi |
| 95 | else |
116 | else |
| 96 | perl Makefile.PL ${myconf} \ |
117 | einfo "No Make or Build file detect..." |
| 97 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
118 | return |
| 98 | fi |
119 | fi |
| 99 | } |
120 | } |
| 100 | |
121 | |
| 101 | perl-module_src_compile() { |
122 | perl-module_src_compile() { |
| 102 | |
123 | |
| … | |
… | |
| 120 | fi |
141 | fi |
| 121 | fi |
142 | fi |
| 122 | } |
143 | } |
| 123 | |
144 | |
| 124 | perl-module_src_install() { |
145 | perl-module_src_install() { |
| 125 | |
146 | |
| 126 | perlinfo |
147 | perlinfo |
| 127 | |
148 | |
| 128 | test -z ${mytargets} && mytargets="install" |
149 | test -z ${mytargets} && mytargets="install" |
| 129 | |
150 | |
| 130 | if [ -z ${BUILDER_VER} ]; then |
151 | if [ -z ${BUILDER_VER} ]; then |
| 131 | make ${myinst} ${mytargets} || die |
152 | make ${myinst} ${mytargets} || die |
| 132 | else |
153 | else |
| 133 | perl ${S}/Build install |
154 | perl ${S}/Build install |
| 134 | fi |
155 | fi |
| … | |
… | |
| 140 | if [ "${STAT}x" != "x" ]; then |
161 | if [ "${STAT}x" != "x" ]; then |
| 141 | sed -i -e "s:${D}:/:g" ${FILE} |
162 | sed -i -e "s:${D}:/:g" ${FILE} |
| 142 | fi |
163 | fi |
| 143 | done |
164 | done |
| 144 | |
165 | |
| 145 | for doc in Change* MANIFEST* README*; do |
166 | for doc in Change* MANIFEST* README* ${mydoc}; do |
| 146 | [ -s "$doc" ] && dodoc $doc |
167 | [ -s "$doc" ] && dodoc $doc |
| 147 | done |
168 | done |
| 148 | if [ -s "${mydoc}" ]; then |
|
|
| 149 | dodoc ${mydoc} |
|
|
| 150 | fi |
|
|
| 151 | } |
169 | } |
| 152 | |
170 | |
| 153 | |
171 | |
| 154 | perl-module_pkg_setup() { |
172 | perl-module_pkg_setup() { |
| 155 | |
173 | |
| 156 | perlinfo |
174 | perlinfo |
| 157 | } |
175 | } |
| 158 | |
176 | |
| 159 | |
177 | |
| 160 | perl-module_pkg_preinst() { |
178 | perl-module_pkg_preinst() { |
| 161 | |
179 | |
| 162 | perlinfo |
180 | perlinfo |
| 163 | } |
181 | } |
| 164 | |
182 | |
| 165 | perl-module_pkg_postinst() { |
183 | perl-module_pkg_postinst() { |
| 166 | |
184 | |
|
|
185 | einfo "Man pages are not installed for most modules now." |
|
|
186 | einfo "Please use perldoc instad." |
| 167 | updatepod |
187 | updatepod |
| 168 | } |
188 | } |
| 169 | |
189 | |
| 170 | perl-module_pkg_prerm() { |
190 | perl-module_pkg_prerm() { |
| 171 | |
191 | |
| 172 | updatepod |
192 | updatepod |
| 173 | } |
193 | } |
| 174 | |
194 | |
| 175 | perl-module_pkg_postrm() { |
195 | perl-module_pkg_postrm() { |
| 176 | |
196 | |
| 177 | updatepod |
197 | updatepod |
| 178 | } |
198 | } |
| 179 | |
199 | |
| 180 | perlinfo() { |
200 | perlinfo() { |
| 181 | |
201 | |
|
|
202 | local version |
| 182 | eval `perl '-V:version'` |
203 | eval `perl '-V:version'` |
| 183 | PERL_VERSION=${version} |
204 | PERL_VERSION=${version} |
| 184 | |
205 | |
|
|
206 | local installsitearch |
| 185 | eval `perl '-V:installsitearch'` |
207 | eval `perl '-V:installsitearch'` |
| 186 | SITE_ARCH=${installsitearch} |
208 | SITE_ARCH=${installsitearch} |
| 187 | |
209 | |
|
|
210 | local installsitelib |
| 188 | eval `perl '-V:installsitearch'` |
211 | eval `perl '-V:installsitelib'` |
| 189 | SITE_LIB=${installsitearch} |
212 | SITE_LIB=${installsitelib} |
| 190 | |
213 | |
|
|
214 | local installarchlib |
| 191 | eval `perl '-V:installarchlib'` |
215 | eval `perl '-V:installarchlib'` |
| 192 | ARCH_LIB=${installarchlib} |
216 | ARCH_LIB=${installarchlib} |
| 193 | |
217 | |
|
|
218 | local installvendorlib |
| 194 | eval `perl '-V:installvendorlib'` |
219 | eval `perl '-V:installvendorlib'` |
| 195 | VENDOR_LIB=${installvendorlib} |
220 | VENDOR_LIB=${installvendorlib} |
| 196 | |
221 | |
|
|
222 | local installvendorarch |
| 197 | eval `perl '-V:installvendorarch'` |
223 | eval `perl '-V:installvendorarch'` |
| 198 | VENDOR_ARCH=${installvendorarch} |
224 | VENDOR_ARCH=${installvendorarch} |
| 199 | |
225 | |
|
|
226 | if [ "${USE_BUILDER}" == "yes" ]; then |
|
|
227 | if [ ! -f ${S}/Makefile.PL ]; then |
| 200 | if [ -f ${S}/Build.PL ]; then |
228 | if [ -f ${S}/Build.PL ]; then |
| 201 | if [ ${PN} == "module-build" ]; then |
229 | if [ ${PN} == "module-build" ]; then |
| 202 | BUILDER_VER="1" # A bootstrapping if you will |
230 | BUILDER_VER="1" # A bootstrapping if you will |
| 203 | else |
231 | else |
| 204 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
232 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
| 205 | fi |
233 | fi |
|
|
234 | fi |
|
|
235 | fi |
| 206 | fi |
236 | fi |
| 207 | |
237 | |
| 208 | if [ -f /usr/bin/perl ] |
238 | if [ -f /usr/bin/perl ] |
| 209 | then |
239 | then |
| 210 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
240 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 211 | fi |
241 | fi |
| 212 | } |
242 | } |
| 213 | |
243 | |
| 214 | fixlocalpod() { |
244 | fixlocalpod() { |
| … | |
… | |
| 222 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
252 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 223 | touch ${D}/${POD_DIR}/${P}.pod.arch |
253 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 224 | 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 |
| 225 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
255 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 226 | fi |
256 | fi |
| 227 | |
257 | |
| 228 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
258 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 229 | then |
259 | then |
| 230 | touch ${D}/${POD_DIR}/${P}.pod |
260 | touch ${D}/${POD_DIR}/${P}.pod |
| 231 | sed -e "s:${D}::g" \ |
261 | sed -e "s:${D}::g" \ |
| 232 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
262 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 233 | touch ${D}/${POD_DIR}/${P}.pod.site |
263 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 234 | 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 |
| 235 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
265 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 236 | fi |
266 | fi |
| 237 | |
267 | |
| 238 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
268 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 239 | then |
269 | then |
| 240 | touch ${D}/${POD_DIR}/${P}.pod |
270 | touch ${D}/${POD_DIR}/${P}.pod |
| 241 | sed -e "s:${D}::g" \ |
271 | sed -e "s:${D}::g" \ |
| 242 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
272 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 243 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
273 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
| 244 | 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 |