| 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.1.1.1 2005/11/30 09:59:31 chriswhite Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.70 2005/05/17 14:36:13 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}" |
| 11 | |
13 | |
| 12 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 13 | src_compile src_install src_test |
15 | src_compile src_install src_test \ |
|
|
16 | perlinfo updatepod |
| 14 | |
17 | |
| 15 | # 2005.04.28 mcummings |
18 | # 2005.04.28 mcummings |
| 16 | # Mounting problems with src_test functions has forced me to make the |
19 | # 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 |
20 | # 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 |
21 | # 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 - |
42 | # 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 |
43 | # 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 |
44 | # 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 |
45 | # with the pods. Modifications to the eclass provided by Yaakov S |
| 43 | # <yselkowitz@hotmail.com> in bug 83622 |
46 | # <yselkowitz@hotmail.com> in bug 83622 |
| 44 | # |
47 | # |
| 45 | # <later the same day> |
48 | # <later the same day> |
| 46 | # The long awaited (by me) fix for automagically detecting and dealing |
49 | # 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 |
50 | # 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 |
51 | # 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 |
52 | # 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 |
55 | # 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 |
56 | # 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 |
57 | # 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 |
58 | # the style directive any more (especially since it isn't in the eclass |
| 56 | # anymore). Enjoy! |
59 | # anymore). Enjoy! |
| 57 | # |
|
|
| 58 | # 2005.07.18 mcummings |
|
|
| 59 | # Fix for proper handling of $mydoc - thanks to stkn for noticing we were |
|
|
| 60 | # bombing out there |
|
|
| 61 | # |
|
|
| 62 | # 2005.07.19 mcummings |
|
|
| 63 | # Providing an override var for the use of Module::Build. While it is being |
|
|
| 64 | # incorporated in more and more modules, not module authors have working |
|
|
| 65 | # Build.PL's in place. The override is to allow for a fallback to the "classic" |
|
|
| 66 | # Makfile.PL - example is Class::MethodMaker, which provides a Build.PL that is |
|
|
| 67 | # severely broken. |
|
|
| 68 | |
60 | |
| 69 | |
61 | |
| 70 | |
62 | |
| 71 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
63 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
| 72 | RDEPEND="${DEPEND}" |
|
|
| 73 | SRC_PREP="no" |
64 | SRC_PREP="no" |
| 74 | SRC_TEST="skip" |
65 | SRC_TEST="skip" |
| 75 | USE_BUILDER="yes" |
|
|
| 76 | |
66 | |
| 77 | PERL_VERSION="" |
67 | PERL_VERSION="" |
| 78 | SITE_ARCH="" |
68 | SITE_ARCH="" |
| 79 | SITE_LIB="" |
69 | SITE_LIB="" |
| 80 | VENDOR_LIB="" |
70 | VENDOR_LIB="" |
| … | |
… | |
| 89 | |
79 | |
| 90 | export PERL_MM_USE_DEFAULT=1 |
80 | export PERL_MM_USE_DEFAULT=1 |
| 91 | |
81 | |
| 92 | |
82 | |
| 93 | SRC_PREP="yes" |
83 | SRC_PREP="yes" |
| 94 | if [ -f ${S}/Build.PL ] && [ "${USE_BUILDER}" == "yes" ]; then |
84 | if [ -f ${S}/Build.PL ]; then |
| 95 | einfo "Using Module::Build" |
|
|
| 96 | if [ -z ${BUILDER_VER} ]; then |
85 | if [ -z ${BUILDER_VER} ]; then |
| 97 | eerror |
86 | eerror |
| 98 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
87 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
| 99 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
88 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
| 100 | eerror "on dev-perl/module-build" |
89 | eerror "on dev-perl/module-build" |
| … | |
… | |
| 103 | die |
92 | die |
| 104 | else |
93 | else |
| 105 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
94 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
| 106 | fi |
95 | fi |
| 107 | else |
96 | else |
| 108 | einfo "Using ExtUtils::MakeMaker" |
|
|
| 109 | perl Makefile.PL ${myconf} \ |
97 | perl Makefile.PL ${myconf} \ |
| 110 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
98 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
| 111 | fi |
99 | fi |
| 112 | } |
100 | } |
| 113 | |
101 | |
| … | |
… | |
| 133 | fi |
121 | fi |
| 134 | fi |
122 | fi |
| 135 | } |
123 | } |
| 136 | |
124 | |
| 137 | perl-module_src_install() { |
125 | perl-module_src_install() { |
| 138 | |
126 | |
| 139 | perlinfo |
127 | perlinfo |
| 140 | |
128 | |
| 141 | test -z ${mytargets} && mytargets="install" |
129 | test -z ${mytargets} && mytargets="install" |
| 142 | |
130 | |
| 143 | if [ -z ${BUILDER_VER} ]; then |
131 | if [ -z ${BUILDER_VER} ]; then |
| 144 | make ${myinst} ${mytargets} || die |
132 | make ${myinst} ${mytargets} || die |
| 145 | else |
133 | else |
| 146 | perl ${S}/Build install |
134 | perl ${S}/Build install |
| 147 | fi |
135 | fi |
| … | |
… | |
| 153 | if [ "${STAT}x" != "x" ]; then |
141 | if [ "${STAT}x" != "x" ]; then |
| 154 | sed -i -e "s:${D}:/:g" ${FILE} |
142 | sed -i -e "s:${D}:/:g" ${FILE} |
| 155 | fi |
143 | fi |
| 156 | done |
144 | done |
| 157 | |
145 | |
| 158 | for doc in Change* MANIFEST* README* ${mydoc}; do |
146 | for doc in Change* MANIFEST* README*; do |
| 159 | [ -s "$doc" ] && dodoc $doc |
147 | [ -s "$doc" ] && dodoc $doc |
| 160 | done |
148 | done |
|
|
149 | if [ -s "${mydoc}" ]; then |
|
|
150 | dodoc ${mydoc} |
|
|
151 | fi |
| 161 | } |
152 | } |
| 162 | |
153 | |
| 163 | |
154 | |
| 164 | perl-module_pkg_setup() { |
155 | perl-module_pkg_setup() { |
| 165 | |
156 | |
| 166 | perlinfo |
157 | perlinfo |
| 167 | } |
158 | } |
| 168 | |
159 | |
| 169 | |
160 | |
| 170 | perl-module_pkg_preinst() { |
161 | perl-module_pkg_preinst() { |
| 171 | |
162 | |
| 172 | perlinfo |
163 | perlinfo |
| 173 | } |
164 | } |
| 174 | |
165 | |
| 175 | perl-module_pkg_postinst() { |
166 | perl-module_pkg_postinst() { |
| 176 | |
167 | |
| 177 | updatepod |
168 | updatepod |
| 178 | } |
169 | } |
| 179 | |
170 | |
| 180 | perl-module_pkg_prerm() { |
171 | perl-module_pkg_prerm() { |
| 181 | |
172 | |
| 182 | updatepod |
173 | updatepod |
| 183 | } |
174 | } |
| 184 | |
175 | |
| 185 | perl-module_pkg_postrm() { |
176 | perl-module_pkg_postrm() { |
| 186 | |
177 | |
| 187 | updatepod |
178 | updatepod |
| 188 | } |
179 | } |
| 189 | |
180 | |
| 190 | perlinfo() { |
181 | perlinfo() { |
| 191 | |
182 | |
| 192 | local version |
|
|
| 193 | eval `perl '-V:version'` |
183 | eval `perl '-V:version'` |
| 194 | PERL_VERSION=${version} |
184 | PERL_VERSION=${version} |
| 195 | |
185 | |
| 196 | local installsitearch |
|
|
| 197 | eval `perl '-V:installsitearch'` |
186 | eval `perl '-V:installsitearch'` |
| 198 | SITE_ARCH=${installsitearch} |
187 | SITE_ARCH=${installsitearch} |
| 199 | |
188 | |
| 200 | local installsitelib |
|
|
| 201 | eval `perl '-V:installsitelib'` |
189 | eval `perl '-V:installsitearch'` |
| 202 | SITE_LIB=${installsitelib} |
190 | SITE_LIB=${installsitearch} |
| 203 | |
191 | |
| 204 | local installarchlib |
|
|
| 205 | eval `perl '-V:installarchlib'` |
192 | eval `perl '-V:installarchlib'` |
| 206 | ARCH_LIB=${installarchlib} |
193 | ARCH_LIB=${installarchlib} |
| 207 | |
194 | |
| 208 | local installvendorlib |
|
|
| 209 | eval `perl '-V:installvendorlib'` |
195 | eval `perl '-V:installvendorlib'` |
| 210 | VENDOR_LIB=${installvendorlib} |
196 | VENDOR_LIB=${installvendorlib} |
| 211 | |
197 | |
| 212 | local installvendorarch |
|
|
| 213 | eval `perl '-V:installvendorarch'` |
198 | eval `perl '-V:installvendorarch'` |
| 214 | VENDOR_ARCH=${installvendorarch} |
199 | VENDOR_ARCH=${installvendorarch} |
| 215 | |
200 | |
| 216 | if [ "${USE_BUILDER}" == "yes" ]; then |
|
|
| 217 | if [ -f ${S}/Build.PL ]; then |
201 | if [ -f ${S}/Build.PL ]; then |
| 218 | if [ ${PN} == "module-build" ]; then |
202 | if [ ${PN} == "module-build" ]; then |
| 219 | BUILDER_VER="1" # A bootstrapping if you will |
203 | BUILDER_VER="1" # A bootstrapping if you will |
| 220 | else |
204 | else |
| 221 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
205 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
| 222 | fi |
|
|
| 223 | fi |
206 | fi |
| 224 | fi |
207 | fi |
| 225 | |
208 | |
| 226 | if [ -f /usr/bin/perl ] |
209 | if [ -f /usr/bin/perl ] |
| 227 | then |
210 | then |
| 228 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
211 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 229 | fi |
212 | fi |
| 230 | } |
213 | } |
| 231 | |
214 | |
| 232 | fixlocalpod() { |
215 | fixlocalpod() { |
| … | |
… | |
| 240 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
223 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 241 | touch ${D}/${POD_DIR}/${P}.pod.arch |
224 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 242 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
225 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 243 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
226 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 244 | fi |
227 | fi |
| 245 | |
228 | |
| 246 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
229 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 247 | then |
230 | then |
| 248 | touch ${D}/${POD_DIR}/${P}.pod |
231 | touch ${D}/${POD_DIR}/${P}.pod |
| 249 | sed -e "s:${D}::g" \ |
232 | sed -e "s:${D}::g" \ |
| 250 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
233 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 251 | touch ${D}/${POD_DIR}/${P}.pod.site |
234 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 252 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
235 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 253 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
236 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 254 | fi |
237 | fi |
| 255 | |
238 | |
| 256 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
239 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 257 | then |
240 | then |
| 258 | touch ${D}/${POD_DIR}/${P}.pod |
241 | touch ${D}/${POD_DIR}/${P}.pod |
| 259 | sed -e "s:${D}::g" \ |
242 | sed -e "s:${D}::g" \ |
| 260 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
243 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 261 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
244 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
| 262 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
245 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |