| 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.91 2006/05/26 15:19:55 antarus 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="" |
| … | |
… | |
| 76 | perl-module_src_prep() { |
90 | perl-module_src_prep() { |
| 77 | |
91 | |
| 78 | perlinfo |
92 | perlinfo |
| 79 | |
93 | |
| 80 | export PERL_MM_USE_DEFAULT=1 |
94 | export PERL_MM_USE_DEFAULT=1 |
|
|
95 | # Disable ExtUtils::AutoInstall from prompting |
|
|
96 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 81 | |
97 | |
| 82 | |
98 | |
| 83 | SRC_PREP="yes" |
99 | SRC_PREP="yes" |
| 84 | if [ -f ${S}/Build.PL ]; then |
100 | if [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
| 85 | if [ -z ${BUILDER_VER} ]; then |
101 | einfo "Using ExtUtils::MakeMaker" |
| 86 | eerror |
|
|
| 87 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
| 88 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
| 89 | eerror "on dev-perl/module-build" |
|
|
| 90 | eerror "${BUILDER_VER}" |
|
|
| 91 | eerror |
|
|
| 92 | die |
|
|
| 93 | else |
|
|
| 94 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
| 95 | fi |
|
|
| 96 | else |
|
|
| 97 | perl Makefile.PL ${myconf} \ |
102 | #perl Makefile.PL ${myconf} \ |
|
|
103 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
| 98 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
104 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
| 99 | fi |
105 | fi |
|
|
106 | if [ -f Build.PL ] ; then |
|
|
107 | einfo "Using Module::Build" |
|
|
108 | perl Build.PL --installdirs=vendor --destdir=${D} --libdoc= |
|
|
109 | fi |
|
|
110 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
|
|
111 | einfo "No Make or Build file detected..." |
|
|
112 | return |
|
|
113 | fi |
| 100 | } |
114 | } |
| 101 | |
115 | |
| 102 | perl-module_src_compile() { |
116 | perl-module_src_compile() { |
| 103 | |
117 | |
| 104 | perlinfo |
118 | perlinfo |
| 105 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
119 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 106 | if [ -z ${BUILDER_VER} ]; then |
120 | if [ -f Makefile ]; then |
| 107 | make ${mymake} || die "compilation failed" |
121 | make ${mymake} || die "compilation failed" |
| 108 | else |
122 | elif [ -f Build ]; then |
| 109 | perl ${S}/Build build |
123 | perl Build build |
| 110 | fi |
124 | fi |
| 111 | |
125 | |
| 112 | } |
126 | } |
| 113 | |
127 | |
| 114 | perl-module_src_test() { |
128 | perl-module_src_test() { |
|
|
129 | echo "Boobies" |
| 115 | if [ "${SRC_TEST}" == "do" ]; then |
130 | if [ "${SRC_TEST}" == "do" ]; then |
| 116 | perlinfo |
131 | perlinfo |
| 117 | if [ -z ${BUILDER_VER} ]; then |
132 | if [ -f Makefile ]; then |
| 118 | make test || die "test failed" |
133 | make test || die "test failed" |
| 119 | else |
134 | elif [ -f Build ]; then |
| 120 | perl ${S}/Build test || die "test failed" |
135 | perl Build test || die "test failed" |
| 121 | fi |
136 | fi |
| 122 | fi |
137 | fi |
| 123 | } |
138 | } |
| 124 | |
139 | |
| 125 | perl-module_src_install() { |
140 | perl-module_src_install() { |
| 126 | |
141 | |
| 127 | perlinfo |
142 | perlinfo |
| 128 | |
143 | |
| 129 | test -z ${mytargets} && mytargets="install" |
144 | test -z ${mytargets} && mytargets="install" |
| 130 | |
145 | |
| 131 | if [ -z ${BUILDER_VER} ]; then |
146 | if [ -f Makefile ]; then |
| 132 | make ${myinst} ${mytargets} || die |
147 | make ${myinst} ${mytargets} || die |
| 133 | else |
148 | elif [ -f Build ]; then |
| 134 | perl ${S}/Build install |
149 | perl ${S}/Build install |
| 135 | fi |
150 | fi |
| 136 | |
151 | |
| 137 | fixlocalpod |
152 | fixlocalpod |
| 138 | |
153 | |
| … | |
… | |
| 141 | if [ "${STAT}x" != "x" ]; then |
156 | if [ "${STAT}x" != "x" ]; then |
| 142 | sed -i -e "s:${D}:/:g" ${FILE} |
157 | sed -i -e "s:${D}:/:g" ${FILE} |
| 143 | fi |
158 | fi |
| 144 | done |
159 | done |
| 145 | |
160 | |
| 146 | for doc in Change* MANIFEST* README*; do |
161 | for doc in Change* MANIFEST* README* ${mydoc}; do |
| 147 | [ -s "$doc" ] && dodoc $doc |
162 | [ -s "$doc" ] && dodoc $doc |
| 148 | done |
163 | done |
| 149 | if [ -s "${mydoc}" ]; then |
|
|
| 150 | dodoc ${mydoc} |
|
|
| 151 | fi |
|
|
| 152 | } |
164 | } |
| 153 | |
165 | |
| 154 | |
166 | |
| 155 | perl-module_pkg_setup() { |
167 | perl-module_pkg_setup() { |
| 156 | |
168 | |
| 157 | perlinfo |
169 | perlinfo |
| 158 | } |
170 | } |
| 159 | |
171 | |
| 160 | |
172 | |
| 161 | perl-module_pkg_preinst() { |
173 | perl-module_pkg_preinst() { |
| 162 | |
174 | |
| 163 | perlinfo |
175 | perlinfo |
| 164 | } |
176 | } |
| 165 | |
177 | |
| 166 | perl-module_pkg_postinst() { |
178 | perl-module_pkg_postinst() { |
| 167 | |
179 | |
|
|
180 | einfo "Man pages are not installed for most modules now." |
|
|
181 | einfo "Please use perldoc instead." |
| 168 | updatepod |
182 | updatepod |
| 169 | } |
183 | } |
| 170 | |
184 | |
| 171 | perl-module_pkg_prerm() { |
185 | perl-module_pkg_prerm() { |
| 172 | |
186 | |
| 173 | updatepod |
187 | updatepod |
| 174 | } |
188 | } |
| 175 | |
189 | |
| 176 | perl-module_pkg_postrm() { |
190 | perl-module_pkg_postrm() { |
| 177 | |
191 | |
| 178 | updatepod |
192 | updatepod |
| 179 | } |
193 | } |
| 180 | |
194 | |
| 181 | perlinfo() { |
195 | perlinfo() { |
| 182 | |
196 | |
|
|
197 | local version |
| 183 | eval `perl '-V:version'` |
198 | eval `perl '-V:version'` |
| 184 | PERL_VERSION=${version} |
199 | PERL_VERSION=${version} |
| 185 | |
200 | |
|
|
201 | local installsitearch |
| 186 | eval `perl '-V:installsitearch'` |
202 | eval `perl '-V:installsitearch'` |
| 187 | SITE_ARCH=${installsitearch} |
203 | SITE_ARCH=${installsitearch} |
| 188 | |
204 | |
|
|
205 | local installsitelib |
| 189 | eval `perl '-V:installsitearch'` |
206 | eval `perl '-V:installsitelib'` |
| 190 | SITE_LIB=${installsitearch} |
207 | SITE_LIB=${installsitelib} |
| 191 | |
208 | |
|
|
209 | local installarchlib |
| 192 | eval `perl '-V:installarchlib'` |
210 | eval `perl '-V:installarchlib'` |
| 193 | ARCH_LIB=${installarchlib} |
211 | ARCH_LIB=${installarchlib} |
| 194 | |
212 | |
|
|
213 | local installvendorlib |
| 195 | eval `perl '-V:installvendorlib'` |
214 | eval `perl '-V:installvendorlib'` |
| 196 | VENDOR_LIB=${installvendorlib} |
215 | VENDOR_LIB=${installvendorlib} |
| 197 | |
216 | |
|
|
217 | local installvendorarch |
| 198 | eval `perl '-V:installvendorarch'` |
218 | eval `perl '-V:installvendorarch'` |
| 199 | VENDOR_ARCH=${installvendorarch} |
219 | VENDOR_ARCH=${installvendorarch} |
| 200 | |
220 | |
|
|
221 | if [ "${USE_BUILDER}" == "yes" ]; then |
|
|
222 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
| 201 | if [ -f ${S}/Build.PL ]; then |
223 | if [ -f ${S}/Build.PL ]; then |
| 202 | if [ ${PN} == "module-build" ]; then |
224 | if [ ${PN} == "module-build" ]; then |
| 203 | BUILDER_VER="1" # A bootstrapping if you will |
225 | BUILDER_VER="1" # A bootstrapping if you will |
| 204 | else |
226 | else |
| 205 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
227 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
228 | fi |
| 206 | fi |
229 | fi |
|
|
230 | fi |
| 207 | fi |
231 | fi |
| 208 | |
232 | |
| 209 | if [ -f /usr/bin/perl ] |
233 | if [ -f /usr/bin/perl ] |
| 210 | then |
234 | then |
| 211 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
235 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 212 | fi |
236 | fi |
| 213 | } |
237 | } |
| 214 | |
238 | |
| 215 | fixlocalpod() { |
239 | fixlocalpod() { |
| … | |
… | |
| 223 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
247 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 224 | touch ${D}/${POD_DIR}/${P}.pod.arch |
248 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 225 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
249 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 226 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
250 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 227 | fi |
251 | fi |
| 228 | |
252 | |
| 229 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
253 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 230 | then |
254 | then |
| 231 | touch ${D}/${POD_DIR}/${P}.pod |
255 | touch ${D}/${POD_DIR}/${P}.pod |
| 232 | sed -e "s:${D}::g" \ |
256 | sed -e "s:${D}::g" \ |
| 233 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
257 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 234 | touch ${D}/${POD_DIR}/${P}.pod.site |
258 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 235 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
259 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 236 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
260 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 237 | fi |
261 | fi |
| 238 | |
262 | |
| 239 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
263 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 240 | then |
264 | then |
| 241 | touch ${D}/${POD_DIR}/${P}.pod |
265 | touch ${D}/${POD_DIR}/${P}.pod |
| 242 | sed -e "s:${D}::g" \ |
266 | sed -e "s:${D}::g" \ |
| 243 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
267 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 244 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
268 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
| 245 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
269 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |