| 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.100 2006/08/06 03:46:21 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 |
| … | |
… | |
| 58 | # Fix for proper handling of $mydoc - thanks to stkn for noticing we were |
58 | # Fix for proper handling of $mydoc - thanks to stkn for noticing we were |
| 59 | # bombing out there |
59 | # bombing out there |
| 60 | # |
60 | # |
| 61 | # 2005.07.19 mcummings |
61 | # 2005.07.19 mcummings |
| 62 | # Providing an override var for the use of Module::Build. While it is being |
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 |
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" |
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 |
65 | # Makfile.PL - example is Class::MethodMaker, which provides a Build.PL that is |
| 66 | # severely broken. |
66 | # severely broken. |
| 67 | # |
67 | # |
| 68 | # 2006.02.11 mcummings |
68 | # 2006.02.11 mcummings |
| 69 | # Per a conversation with solar, adding a change to the dep/rdep lines for |
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 |
70 | # minimal. Should fix bug 68367 and bug 83622, as well as other embedded builds |
| 71 | # that use perl components without providing perl |
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??). |
| 72 | |
82 | |
| 73 | |
83 | |
| 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" |
84 | SRC_PREP="no" |
| 78 | SRC_TEST="skip" |
85 | SRC_TEST="skip" |
| 79 | USE_BUILDER="yes" |
86 | PREFER_BUILDPL="yes" |
| 80 | |
87 | |
| 81 | PERL_VERSION="" |
88 | PERL_VERSION="" |
| 82 | SITE_ARCH="" |
89 | SITE_ARCH="" |
| 83 | SITE_LIB="" |
90 | SITE_LIB="" |
| 84 | VENDOR_LIB="" |
91 | VENDOR_LIB="" |
| … | |
… | |
| 95 | # Disable ExtUtils::AutoInstall from prompting |
102 | # Disable ExtUtils::AutoInstall from prompting |
| 96 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
103 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 97 | |
104 | |
| 98 | |
105 | |
| 99 | SRC_PREP="yes" |
106 | SRC_PREP="yes" |
|
|
107 | if [ "${PREFER_BUILDPL}" == "yes" ] && ( [ -f Build.PL ] || [ ${PN} == "module-build" ] ); then |
|
|
108 | einfo "Using Module::Build" |
|
|
109 | perl Build.PL --installdirs=vendor --destdir=${D} --libdoc= || die "Unable to build! (are you using USE=\"build\"?)" |
| 100 | if [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
110 | elif [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
| 101 | einfo "Using ExtUtils::MakeMaker" |
111 | einfo "Using ExtUtils::MakeMaker" |
| 102 | #perl Makefile.PL ${myconf} \ |
112 | #perl Makefile.PL ${myconf} \ |
| 103 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
113 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
| 104 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} || die "Unable to build! (are you using USE=\"build\"?)" |
114 | 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 |
115 | fi |
| 110 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
116 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
| 111 | einfo "No Make or Build file detected..." |
117 | einfo "No Make or Build file detected..." |
| 112 | return |
118 | return |
| 113 | fi |
119 | fi |
| … | |
… | |
| 146 | make ${myinst} ${mytargets} || die |
152 | make ${myinst} ${mytargets} || die |
| 147 | elif [ -f Build ]; then |
153 | elif [ -f Build ]; then |
| 148 | perl ${S}/Build install |
154 | perl ${S}/Build install |
| 149 | fi |
155 | fi |
| 150 | |
156 | |
|
|
157 | |
|
|
158 | einfo "Cleaning out stray man files" |
|
|
159 | for FILE in `find ${D} -type f -name "*.3pm*"`; do |
|
|
160 | rm -rf ${FILE} |
|
|
161 | done |
|
|
162 | find ${D}/usr/share/man -depth -type d 2>/dev/null | xargs -r rmdir 2>/dev/null |
|
|
163 | |
| 151 | fixlocalpod |
164 | fixlocalpod |
| 152 | |
165 | |
| 153 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
166 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
| 154 | STAT=`file $FILE| grep -i " text"` |
167 | STAT=`file $FILE| grep -i " text"` |
| 155 | if [ "${STAT}x" != "x" ]; then |
168 | if [ "${STAT}x" != "x" ]; then |
| … | |
… | |
| 215 | |
228 | |
| 216 | local installvendorarch |
229 | local installvendorarch |
| 217 | eval `perl '-V:installvendorarch'` |
230 | eval `perl '-V:installvendorarch'` |
| 218 | VENDOR_ARCH=${installvendorarch} |
231 | VENDOR_ARCH=${installvendorarch} |
| 219 | |
232 | |
| 220 | if [ "${USE_BUILDER}" == "yes" ]; then |
233 | if [ "${PREFER_BUILDPL}" == "yes" ]; then |
| 221 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
234 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
| 222 | if [ -f ${S}/Build.PL ]; then |
235 | if [ -f ${S}/Build.PL ]; then |
| 223 | if [ ${PN} == "module-build" ]; then |
236 | if [ ${PN} == "module-build" ]; then |
| 224 | BUILDER_VER="1" # A bootstrapping if you will |
237 | BUILDER_VER="1" # A bootstrapping if you will |
| 225 | else |
238 | else |
| … | |
… | |
| 235 | fi |
248 | fi |
| 236 | } |
249 | } |
| 237 | |
250 | |
| 238 | fixlocalpod() { |
251 | fixlocalpod() { |
| 239 | perlinfo |
252 | perlinfo |
| 240 | dodir ${POD_DIR} |
|
|
| 241 | |
253 | |
| 242 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
254 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 243 | then |
255 | 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 |
256 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 250 | fi |
257 | fi |
| 251 | |
258 | |
| 252 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
259 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 253 | then |
260 | 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 |
261 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 260 | fi |
262 | fi |
| 261 | |
263 | |
| 262 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
264 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 263 | then |
265 | 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 |
266 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
| 270 | fi |
267 | fi |
| 271 | } |
268 | } |
| 272 | |
269 | |
| 273 | updatepod() { |
270 | updatepod() { |