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