| 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.96 2006/06/12 20:11:39 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.109 2007/10/17 07:49:15 robbat2 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 | inherit base |
| 11 | |
12 | |
| 12 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test |
13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test src_unpack |
| 13 | |
14 | |
| 14 | # 2005.04.28 mcummings |
15 | # 2005.04.28 mcummings |
| 15 | # Mounting problems with src_test functions has forced me to make the |
16 | # Mounting problems with src_test functions has forced me to make the |
| 16 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
17 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
| 17 | # is generally necessary. I've left a block to make sure we still need to set |
18 | # is generally necessary. I've left a block to make sure we still need to set |
| 18 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
19 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
| 19 | # as many bug reports as we have lately. |
20 | # as many bug reports as we have lately. |
| 20 | |
21 | # |
| 21 | # 2004.05.10 rac |
22 | # 2004.05.10 rac |
| 22 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
23 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
| 23 | # actuality, this should be handled in the perl ebuild, so every perl |
24 | # actuality, this should be handled in the perl ebuild, so every perl |
| 24 | # ebuild should block versions of MakeMaker older than the one it |
25 | # ebuild should block versions of MakeMaker older than the one it |
| 25 | # carries. in the meantime, since we have dumped support for MakeMaker |
26 | # carries. in the meantime, since we have dumped support for MakeMaker |
| … | |
… | |
| 58 | # Fix for proper handling of $mydoc - thanks to stkn for noticing we were |
59 | # Fix for proper handling of $mydoc - thanks to stkn for noticing we were |
| 59 | # bombing out there |
60 | # bombing out there |
| 60 | # |
61 | # |
| 61 | # 2005.07.19 mcummings |
62 | # 2005.07.19 mcummings |
| 62 | # Providing an override var for the use of Module::Build. While it is being |
63 | # 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 | # 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 | # 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 | # Makfile.PL - example is Class::MethodMaker, which provides a Build.PL that is |
| 66 | # severely broken. |
67 | # severely broken. |
| 67 | # |
68 | # |
| 68 | # 2006.02.11 mcummings |
69 | # 2006.02.11 mcummings |
| 69 | # Per a conversation with solar, adding a change to the dep/rdep lines for |
70 | # 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 | # minimal. Should fix bug 68367 and bug 83622, as well as other embedded builds |
| 71 | # that use perl components without providing perl |
72 | # that use perl components without providing perl |
|
|
73 | # |
|
|
74 | # 2006.06.13 mcummings |
|
|
75 | # I've reordered and extended the logic on when to invoke module-build versus |
|
|
76 | # MakeMaker. The problem that has arisen is that some modules provide a |
|
|
77 | # Makefile.PL that passes all arguments on to a Build.PL - including PREFIX, |
|
|
78 | # which causes module-build to build with a target of /usr/usr/ |
|
|
79 | # (how broken is that?). Current logic is if there is a Build.PL and we aren't |
|
|
80 | # overriding, use it; otherwise use the Makefile.PL; otherwise return (maybe we |
|
|
81 | # want all the functionality of the perl-module eclass without needing to |
|
|
82 | # compile??). |
|
|
83 | # |
|
|
84 | # 2007.08.19 ian |
|
|
85 | # Added ${myconf} - bug #176818 |
|
|
86 | # |
|
|
87 | # 2007.10.17 robbat2 |
|
|
88 | # Added the 'MODULE_AUTHOR' variable. Set it before inheriting the eclass |
|
|
89 | # and it will set your HOMEPAGE and SRC_URI correctly for a CPAN package. |
| 72 | |
90 | |
|
|
91 | if [ -z "${HOMEPAGE}" -a -z "${SRC_URI}" -a -n "${MODULE_AUTHOR}" ]; then |
|
|
92 | HOMEPAGE="http://search.cpan.org/~${MODULE_AUTHOR}/" |
|
|
93 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${P}.tar.gz" |
|
|
94 | fi |
| 73 | |
95 | |
| 74 | IUSE="minimal" |
|
|
| 75 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
|
|
| 76 | RDEPEND="!minimal? ( ${DEPEND} )" |
|
|
| 77 | SRC_PREP="no" |
96 | SRC_PREP="no" |
| 78 | SRC_TEST="skip" |
97 | SRC_TEST="skip" |
| 79 | USE_BUILDER="yes" |
98 | PREFER_BUILDPL="yes" |
| 80 | |
99 | |
| 81 | PERL_VERSION="" |
100 | PERL_VERSION="" |
| 82 | SITE_ARCH="" |
101 | SITE_ARCH="" |
| 83 | SITE_LIB="" |
102 | SITE_LIB="" |
| 84 | VENDOR_LIB="" |
103 | VENDOR_LIB="" |
| 85 | VENDOR_ARCH="" |
104 | VENDOR_ARCH="" |
| 86 | ARCH_LIB="" |
105 | ARCH_LIB="" |
| 87 | POD_DIR="" |
106 | POD_DIR="" |
| 88 | BUILDER_VER="" |
107 | BUILDER_VER="" |
|
|
108 | pm_echovar="" |
|
|
109 | |
|
|
110 | perl-module_src_unpack() { |
|
|
111 | if [[ -n ${PATCHES} ]]; then |
|
|
112 | base_src_unpack unpack |
|
|
113 | base_src_unpack autopatch |
|
|
114 | else |
|
|
115 | base_src_unpack unpack |
|
|
116 | fi |
|
|
117 | } |
| 89 | |
118 | |
| 90 | perl-module_src_prep() { |
119 | perl-module_src_prep() { |
| 91 | |
120 | |
| 92 | perlinfo |
121 | perlinfo |
| 93 | |
122 | |
| … | |
… | |
| 95 | # Disable ExtUtils::AutoInstall from prompting |
124 | # Disable ExtUtils::AutoInstall from prompting |
| 96 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
125 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 97 | |
126 | |
| 98 | |
127 | |
| 99 | SRC_PREP="yes" |
128 | SRC_PREP="yes" |
|
|
129 | find ${S} -type d -name "\.svn" -exec /bin/rm -rf {} \; 2>/dev/null |
|
|
130 | if [ "${PREFER_BUILDPL}" == "yes" ] && ( [ -f Build.PL ] || [ ${PN} == "module-build" ] ); then |
|
|
131 | einfo "Using Module::Build" |
|
|
132 | echo "$pm_echovar" | perl Build.PL ${myconf} --installdirs=vendor --destdir=${D} --libdoc= || die "Unable to build! (are you using USE=\"build\"?)" |
| 100 | if [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
133 | elif [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
| 101 | einfo "Using ExtUtils::MakeMaker" |
134 | einfo "Using ExtUtils::MakeMaker" |
| 102 | #perl Makefile.PL ${myconf} \ |
|
|
| 103 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
135 | echo "$pm_echovar" | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
| 104 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} || die "Unable to build! (are you using USE=\"build\"?)" |
136 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} || die "Unable to build! (are you using USE=\"build\"?)" |
| 105 | fi |
|
|
| 106 | if [ -f Build.PL ] && ( [ ! -f Makefile.PL ] || [ ${PN} == "module-build" ]); then |
|
|
| 107 | einfo "Using Module::Build" |
|
|
| 108 | perl Build.PL --installdirs=vendor --destdir=${D} --libdoc= || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
| 109 | fi |
137 | fi |
| 110 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
138 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
| 111 | einfo "No Make or Build file detected..." |
139 | einfo "No Make or Build file detected..." |
| 112 | return |
140 | return |
| 113 | fi |
141 | fi |
| … | |
… | |
| 120 | if [ -f Makefile ]; then |
148 | if [ -f Makefile ]; then |
| 121 | make ${mymake} || die "compilation failed" |
149 | make ${mymake} || die "compilation failed" |
| 122 | elif [ -f Build ]; then |
150 | elif [ -f Build ]; then |
| 123 | perl Build build || die "compilation failed" |
151 | perl Build build || die "compilation failed" |
| 124 | fi |
152 | fi |
|
|
153 | fixlocalpod |
| 125 | |
154 | |
| 126 | } |
155 | } |
| 127 | |
156 | |
| 128 | perl-module_src_test() { |
157 | perl-module_src_test() { |
| 129 | if [ "${SRC_TEST}" == "do" ]; then |
158 | if [ "${SRC_TEST}" == "do" ]; then |
| … | |
… | |
| 146 | make ${myinst} ${mytargets} || die |
175 | make ${myinst} ${mytargets} || die |
| 147 | elif [ -f Build ]; then |
176 | elif [ -f Build ]; then |
| 148 | perl ${S}/Build install |
177 | perl ${S}/Build install |
| 149 | fi |
178 | fi |
| 150 | |
179 | |
|
|
180 | |
|
|
181 | einfo "Cleaning out stray man files" |
|
|
182 | for FILE in `find ${D} -type f -name "*.3pm*"`; do |
|
|
183 | rm -rf ${FILE} |
|
|
184 | done |
|
|
185 | find ${D}/usr/share/man -depth -type d 2>/dev/null | xargs -r rmdir 2>/dev/null |
|
|
186 | |
| 151 | fixlocalpod |
187 | fixlocalpod |
| 152 | |
188 | |
| 153 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
189 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
| 154 | STAT=`file $FILE| grep -i " text"` |
190 | STAT=`file $FILE| grep -i " text"` |
| 155 | if [ "${STAT}x" != "x" ]; then |
191 | if [ "${STAT}x" != "x" ]; then |
| … | |
… | |
| 215 | |
251 | |
| 216 | local installvendorarch |
252 | local installvendorarch |
| 217 | eval `perl '-V:installvendorarch'` |
253 | eval `perl '-V:installvendorarch'` |
| 218 | VENDOR_ARCH=${installvendorarch} |
254 | VENDOR_ARCH=${installvendorarch} |
| 219 | |
255 | |
| 220 | if [ "${USE_BUILDER}" == "yes" ]; then |
256 | if [ "${PREFER_BUILDPL}" == "yes" ]; then |
| 221 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
257 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
| 222 | if [ -f ${S}/Build.PL ]; then |
258 | if [ -f ${S}/Build.PL ]; then |
| 223 | if [ ${PN} == "module-build" ]; then |
259 | if [ ${PN} == "module-build" ]; then |
| 224 | BUILDER_VER="1" # A bootstrapping if you will |
260 | BUILDER_VER="1" # A bootstrapping if you will |
| 225 | else |
261 | else |
| 226 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
262 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
263 | fi |
| 227 | fi |
264 | fi |
| 228 | fi |
265 | fi |
| 229 | fi |
|
|
| 230 | fi |
266 | fi |
| 231 | |
267 | |
| 232 | if [ -f /usr/bin/perl ] |
268 | if [ -f /usr/bin/perl ] |
| 233 | then |
269 | then |
| 234 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
270 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 235 | fi |
271 | fi |
| 236 | } |
272 | } |
| 237 | |
273 | |
| 238 | fixlocalpod() { |
274 | fixlocalpod() { |
| 239 | perlinfo |
275 | perlinfo |
| 240 | dodir ${POD_DIR} |
|
|
| 241 | |
276 | |
| 242 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
277 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 243 | then |
278 | then |
| 244 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 245 | sed -e "s:${D}::g" \ |
|
|
| 246 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 247 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 248 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 249 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
279 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 250 | fi |
280 | fi |
| 251 | |
281 | |
| 252 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
282 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 253 | then |
283 | then |
| 254 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 255 | sed -e "s:${D}::g" \ |
|
|
| 256 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 257 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 258 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 259 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
284 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 260 | fi |
285 | fi |
| 261 | |
286 | |
| 262 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
287 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 263 | then |
288 | then |
| 264 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 265 | sed -e "s:${D}::g" \ |
|
|
| 266 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 267 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 268 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 269 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
289 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
| 270 | fi |
290 | fi |
| 271 | } |
291 | } |
| 272 | |
292 | |
| 273 | updatepod() { |
293 | updatepod() { |
| 274 | perlinfo |
294 | perlinfo |
| 275 | |
295 | |
| 276 | if [ -d "${POD_DIR}" ] |
296 | if [ -d "${POD_DIR}" ] |
| 277 | then |
297 | then |
| 278 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
298 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
| 279 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
299 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
| 280 | rm -f ${FILE} |
300 | rm -f ${FILE} |
| 281 | done |
301 | done |
| 282 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
302 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 283 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
303 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 284 | rm -f ${FILE} |
304 | rm -f ${FILE} |
| 285 | done |
305 | done |
| 286 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
306 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
| 287 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
307 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
| 288 | rm -f ${FILE} |
308 | rm -f ${FILE} |
| 289 | done |
309 | done |
| 290 | fi |
310 | fi |
| 291 | } |
311 | } |