| 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.101 2006/08/28 20:22:20 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 all 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 |
|
|
72 | # |
|
|
73 | # 2006.06.13 mcummings |
|
|
74 | # I've reordered and extended the logic on when to invoke module-build versus |
|
|
75 | # MakeMaker. The problem that has arisen is that some modules provide a |
|
|
76 | # Makefile.PL that passes all arguments on to a Build.PL - including PREFIX, |
|
|
77 | # which causes module-build to build with a target of /usr/usr/ |
|
|
78 | # (how broken is that?). Current logic is if there is a Build.PL and we aren't |
|
|
79 | # overriding, use it; otherwise use the Makefile.PL; otherwise return (maybe we |
|
|
80 | # want all the functionality of the perl-module eclass without needing to |
|
|
81 | # compile??). |
| 60 | |
82 | |
| 61 | |
83 | |
| 62 | |
|
|
| 63 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
|
|
| 64 | SRC_PREP="no" |
84 | SRC_PREP="no" |
| 65 | SRC_TEST="skip" |
85 | SRC_TEST="skip" |
|
|
86 | PREFER_BUILDPL="yes" |
| 66 | |
87 | |
| 67 | PERL_VERSION="" |
88 | PERL_VERSION="" |
| 68 | SITE_ARCH="" |
89 | SITE_ARCH="" |
| 69 | SITE_LIB="" |
90 | SITE_LIB="" |
| 70 | VENDOR_LIB="" |
91 | VENDOR_LIB="" |
| 71 | VENDOR_ARCH="" |
92 | VENDOR_ARCH="" |
| 72 | ARCH_LIB="" |
93 | ARCH_LIB="" |
| 73 | POD_DIR="" |
94 | POD_DIR="" |
| 74 | BUILDER_VER="" |
95 | BUILDER_VER="" |
|
|
96 | pm_echovar="" |
| 75 | |
97 | |
| 76 | perl-module_src_prep() { |
98 | perl-module_src_prep() { |
| 77 | |
99 | |
| 78 | perlinfo |
100 | perlinfo |
| 79 | |
101 | |
| 80 | export PERL_MM_USE_DEFAULT=1 |
102 | export PERL_MM_USE_DEFAULT=1 |
|
|
103 | # Disable ExtUtils::AutoInstall from prompting |
|
|
104 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 81 | |
105 | |
| 82 | |
106 | |
| 83 | SRC_PREP="yes" |
107 | SRC_PREP="yes" |
| 84 | if [ -f ${S}/Build.PL ]; then |
108 | pwd |
| 85 | if [ -z ${BUILDER_VER} ]; then |
109 | if [ "${PREFER_BUILDPL}" == "yes" ] && ( [ -f Build.PL ] || [ ${PN} == "module-build" ] ); then |
| 86 | eerror |
110 | einfo "Using Module::Build" |
| 87 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
111 | echo "$pm_echovar" | perl Build.PL --installdirs=vendor --destdir=${D} --libdoc= || die "Unable to build! (are you using USE=\"build\"?)" |
| 88 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
112 | elif [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
| 89 | eerror "on dev-perl/module-build" |
113 | einfo "Using ExtUtils::MakeMaker" |
| 90 | eerror "${BUILDER_VER}" |
114 | echo "$pm_echovar" | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
| 91 | eerror |
115 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} || die "Unable to build! (are you using USE=\"build\"?)" |
| 92 | die |
|
|
| 93 | else |
|
|
| 94 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
| 95 | fi |
116 | fi |
| 96 | else |
117 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
| 97 | perl Makefile.PL ${myconf} \ |
118 | einfo "No Make or Build file detected..." |
| 98 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
119 | return |
| 99 | fi |
120 | fi |
| 100 | } |
121 | } |
| 101 | |
122 | |
| 102 | perl-module_src_compile() { |
123 | perl-module_src_compile() { |
| 103 | |
124 | |
| 104 | perlinfo |
125 | perlinfo |
| 105 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
126 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 106 | if [ -z ${BUILDER_VER} ]; then |
127 | if [ -f Makefile ]; then |
| 107 | make ${mymake} || die "compilation failed" |
128 | make ${mymake} || die "compilation failed" |
| 108 | else |
129 | elif [ -f Build ]; then |
| 109 | perl ${S}/Build build |
130 | perl Build build || die "compilation failed" |
| 110 | fi |
131 | fi |
| 111 | |
132 | |
| 112 | } |
133 | } |
| 113 | |
134 | |
| 114 | perl-module_src_test() { |
135 | perl-module_src_test() { |
| 115 | if [ "${SRC_TEST}" == "do" ]; then |
136 | if [ "${SRC_TEST}" == "do" ]; then |
| 116 | perlinfo |
137 | perlinfo |
| 117 | if [ -z ${BUILDER_VER} ]; then |
138 | if [ -f Makefile ]; then |
| 118 | make test || die "test failed" |
139 | make test || die "test failed" |
| 119 | else |
140 | elif [ -f Build ]; then |
| 120 | perl ${S}/Build test || die "test failed" |
141 | perl Build test || die "test failed" |
| 121 | fi |
142 | fi |
| 122 | fi |
143 | fi |
| 123 | } |
144 | } |
| 124 | |
145 | |
| 125 | perl-module_src_install() { |
146 | perl-module_src_install() { |
|
|
147 | |
|
|
148 | perlinfo |
|
|
149 | |
|
|
150 | test -z ${mytargets} && mytargets="install" |
|
|
151 | |
|
|
152 | if [ -f Makefile ]; then |
|
|
153 | make ${myinst} ${mytargets} || die |
|
|
154 | elif [ -f Build ]; then |
|
|
155 | perl ${S}/Build install |
|
|
156 | fi |
|
|
157 | |
|
|
158 | |
|
|
159 | einfo "Cleaning out stray man files" |
|
|
160 | for FILE in `find ${D} -type f -name "*.3pm*"`; do |
|
|
161 | rm -rf ${FILE} |
|
|
162 | done |
|
|
163 | find ${D}/usr/share/man -depth -type d 2>/dev/null | xargs -r rmdir 2>/dev/null |
| 126 | |
164 | |
| 127 | perlinfo |
|
|
| 128 | |
|
|
| 129 | test -z ${mytargets} && mytargets="install" |
|
|
| 130 | |
|
|
| 131 | if [ -z ${BUILDER_VER} ]; then |
|
|
| 132 | make ${myinst} ${mytargets} || die |
|
|
| 133 | else |
|
|
| 134 | perl ${S}/Build install |
|
|
| 135 | fi |
|
|
| 136 | |
|
|
| 137 | fixlocalpod |
165 | fixlocalpod |
| 138 | |
166 | |
| 139 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
167 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
| 140 | STAT=`file $FILE| grep -i " text"` |
168 | STAT=`file $FILE| grep -i " text"` |
| 141 | if [ "${STAT}x" != "x" ]; then |
169 | if [ "${STAT}x" != "x" ]; then |
| 142 | sed -i -e "s:${D}:/:g" ${FILE} |
170 | sed -i -e "s:${D}:/:g" ${FILE} |
| 143 | fi |
171 | fi |
| 144 | done |
172 | done |
| 145 | |
173 | |
| 146 | for doc in Change* MANIFEST* README*; do |
174 | for doc in Change* MANIFEST* README* ${mydoc}; do |
| 147 | [ -s "$doc" ] && dodoc $doc |
175 | [ -s "$doc" ] && dodoc $doc |
| 148 | done |
176 | done |
| 149 | if [ -s "${mydoc}" ]; then |
|
|
| 150 | dodoc ${mydoc} |
|
|
| 151 | fi |
|
|
| 152 | } |
177 | } |
| 153 | |
178 | |
| 154 | |
179 | |
| 155 | perl-module_pkg_setup() { |
180 | perl-module_pkg_setup() { |
| 156 | |
181 | |
| 157 | perlinfo |
182 | perlinfo |
| 158 | } |
183 | } |
| 159 | |
184 | |
| 160 | |
185 | |
| 161 | perl-module_pkg_preinst() { |
186 | perl-module_pkg_preinst() { |
| 162 | |
187 | |
| 163 | perlinfo |
188 | perlinfo |
| 164 | } |
189 | } |
| 165 | |
190 | |
| 166 | perl-module_pkg_postinst() { |
191 | perl-module_pkg_postinst() { |
| 167 | |
192 | |
|
|
193 | einfo "Man pages are not installed for most modules now." |
|
|
194 | einfo "Please use perldoc instead." |
| 168 | updatepod |
195 | updatepod |
| 169 | } |
196 | } |
| 170 | |
197 | |
| 171 | perl-module_pkg_prerm() { |
198 | perl-module_pkg_prerm() { |
| 172 | |
199 | |
| 173 | updatepod |
200 | updatepod |
| 174 | } |
201 | } |
| 175 | |
202 | |
| 176 | perl-module_pkg_postrm() { |
203 | perl-module_pkg_postrm() { |
| 177 | |
204 | |
| 178 | updatepod |
205 | updatepod |
| 179 | } |
206 | } |
| 180 | |
207 | |
| 181 | perlinfo() { |
208 | perlinfo() { |
| 182 | |
209 | |
|
|
210 | local version |
| 183 | eval `perl '-V:version'` |
211 | eval `perl '-V:version'` |
| 184 | PERL_VERSION=${version} |
212 | PERL_VERSION=${version} |
| 185 | |
213 | |
|
|
214 | local installsitearch |
| 186 | eval `perl '-V:installsitearch'` |
215 | eval `perl '-V:installsitearch'` |
| 187 | SITE_ARCH=${installsitearch} |
216 | SITE_ARCH=${installsitearch} |
| 188 | |
217 | |
|
|
218 | local installsitelib |
| 189 | eval `perl '-V:installsitearch'` |
219 | eval `perl '-V:installsitelib'` |
| 190 | SITE_LIB=${installsitearch} |
220 | SITE_LIB=${installsitelib} |
| 191 | |
221 | |
|
|
222 | local installarchlib |
| 192 | eval `perl '-V:installarchlib'` |
223 | eval `perl '-V:installarchlib'` |
| 193 | ARCH_LIB=${installarchlib} |
224 | ARCH_LIB=${installarchlib} |
| 194 | |
225 | |
|
|
226 | local installvendorlib |
| 195 | eval `perl '-V:installvendorlib'` |
227 | eval `perl '-V:installvendorlib'` |
| 196 | VENDOR_LIB=${installvendorlib} |
228 | VENDOR_LIB=${installvendorlib} |
| 197 | |
229 | |
|
|
230 | local installvendorarch |
| 198 | eval `perl '-V:installvendorarch'` |
231 | eval `perl '-V:installvendorarch'` |
| 199 | VENDOR_ARCH=${installvendorarch} |
232 | VENDOR_ARCH=${installvendorarch} |
| 200 | |
233 | |
|
|
234 | if [ "${PREFER_BUILDPL}" == "yes" ]; then |
|
|
235 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
| 201 | if [ -f ${S}/Build.PL ]; then |
236 | if [ -f ${S}/Build.PL ]; then |
| 202 | if [ ${PN} == "module-build" ]; then |
237 | if [ ${PN} == "module-build" ]; then |
| 203 | BUILDER_VER="1" # A bootstrapping if you will |
238 | BUILDER_VER="1" # A bootstrapping if you will |
| 204 | else |
239 | else |
| 205 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
240 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
241 | fi |
| 206 | fi |
242 | fi |
|
|
243 | fi |
| 207 | fi |
244 | fi |
| 208 | |
245 | |
| 209 | if [ -f /usr/bin/perl ] |
246 | if [ -f /usr/bin/perl ] |
| 210 | then |
247 | then |
| 211 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
248 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 212 | fi |
249 | fi |
| 213 | } |
250 | } |
| 214 | |
251 | |
| 215 | fixlocalpod() { |
252 | fixlocalpod() { |
| 216 | perlinfo |
253 | perlinfo |
| 217 | dodir ${POD_DIR} |
|
|
| 218 | |
254 | |
| 219 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
255 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 220 | then |
256 | then |
| 221 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 222 | sed -e "s:${D}::g" \ |
|
|
| 223 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 224 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 225 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 226 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
257 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 227 | fi |
258 | fi |
| 228 | |
259 | |
| 229 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
260 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 230 | then |
261 | then |
| 231 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 232 | sed -e "s:${D}::g" \ |
|
|
| 233 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 234 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 235 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 236 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
262 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 237 | fi |
263 | fi |
| 238 | |
264 | |
| 239 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
265 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 240 | then |
266 | then |
| 241 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 242 | sed -e "s:${D}::g" \ |
|
|
| 243 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 244 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 245 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 246 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
267 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
| 247 | fi |
268 | fi |
| 248 | } |
269 | } |
| 249 | |
270 | |
| 250 | updatepod() { |
271 | updatepod() { |