| 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.105 2007/05/24 15:11: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 | 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 |
| … | |
… | |
| 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??). |
| 72 | |
83 | |
| 73 | |
84 | |
| 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" |
85 | SRC_PREP="no" |
| 78 | SRC_TEST="skip" |
86 | SRC_TEST="skip" |
| 79 | USE_BUILDER="yes" |
87 | PREFER_BUILDPL="yes" |
| 80 | |
88 | |
| 81 | PERL_VERSION="" |
89 | PERL_VERSION="" |
| 82 | SITE_ARCH="" |
90 | SITE_ARCH="" |
| 83 | SITE_LIB="" |
91 | SITE_LIB="" |
| 84 | VENDOR_LIB="" |
92 | VENDOR_LIB="" |
| 85 | VENDOR_ARCH="" |
93 | VENDOR_ARCH="" |
| 86 | ARCH_LIB="" |
94 | ARCH_LIB="" |
| 87 | POD_DIR="" |
95 | POD_DIR="" |
| 88 | BUILDER_VER="" |
96 | BUILDER_VER="" |
|
|
97 | pm_echovar="" |
|
|
98 | |
|
|
99 | perl-module_src_unpack() { |
|
|
100 | if [[ -n ${PATCHES} ]]; then |
|
|
101 | base_src_unpack unpack |
|
|
102 | base_src_unpack autopatch |
|
|
103 | else |
|
|
104 | base_src_unpack unpack |
|
|
105 | fi |
|
|
106 | } |
| 89 | |
107 | |
| 90 | perl-module_src_prep() { |
108 | perl-module_src_prep() { |
| 91 | |
109 | |
| 92 | perlinfo |
110 | perlinfo |
| 93 | |
111 | |
| … | |
… | |
| 95 | # Disable ExtUtils::AutoInstall from prompting |
113 | # Disable ExtUtils::AutoInstall from prompting |
| 96 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
114 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 97 | |
115 | |
| 98 | |
116 | |
| 99 | SRC_PREP="yes" |
117 | SRC_PREP="yes" |
|
|
118 | find ${S} -type d -name "\.svn" -exec /bin/rm -rf {} \; 2>/dev/null |
|
|
119 | if [ "${PREFER_BUILDPL}" == "yes" ] && ( [ -f Build.PL ] || [ ${PN} == "module-build" ] ); then |
|
|
120 | einfo "Using Module::Build" |
|
|
121 | echo "$pm_echovar" | 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 |
122 | elif [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
| 101 | einfo "Using ExtUtils::MakeMaker" |
123 | einfo "Using ExtUtils::MakeMaker" |
| 102 | #perl Makefile.PL ${myconf} \ |
|
|
| 103 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
124 | 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\"?)" |
125 | 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 |
126 | fi |
| 110 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
127 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
| 111 | einfo "No Make or Build file detected..." |
128 | einfo "No Make or Build file detected..." |
| 112 | return |
129 | return |
| 113 | fi |
130 | fi |
| … | |
… | |
| 120 | if [ -f Makefile ]; then |
137 | if [ -f Makefile ]; then |
| 121 | make ${mymake} || die "compilation failed" |
138 | make ${mymake} || die "compilation failed" |
| 122 | elif [ -f Build ]; then |
139 | elif [ -f Build ]; then |
| 123 | perl Build build || die "compilation failed" |
140 | perl Build build || die "compilation failed" |
| 124 | fi |
141 | fi |
|
|
142 | fixlocalpod |
| 125 | |
143 | |
| 126 | } |
144 | } |
| 127 | |
145 | |
| 128 | perl-module_src_test() { |
146 | perl-module_src_test() { |
| 129 | if [ "${SRC_TEST}" == "do" ]; then |
147 | if [ "${SRC_TEST}" == "do" ]; then |
| … | |
… | |
| 146 | make ${myinst} ${mytargets} || die |
164 | make ${myinst} ${mytargets} || die |
| 147 | elif [ -f Build ]; then |
165 | elif [ -f Build ]; then |
| 148 | perl ${S}/Build install |
166 | perl ${S}/Build install |
| 149 | fi |
167 | fi |
| 150 | |
168 | |
|
|
169 | |
|
|
170 | einfo "Cleaning out stray man files" |
|
|
171 | for FILE in `find ${D} -type f -name "*.3pm*"`; do |
|
|
172 | rm -rf ${FILE} |
|
|
173 | done |
|
|
174 | find ${D}/usr/share/man -depth -type d 2>/dev/null | xargs -r rmdir 2>/dev/null |
|
|
175 | |
| 151 | fixlocalpod |
176 | fixlocalpod |
| 152 | |
177 | |
| 153 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
178 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
| 154 | STAT=`file $FILE| grep -i " text"` |
179 | STAT=`file $FILE| grep -i " text"` |
| 155 | if [ "${STAT}x" != "x" ]; then |
180 | if [ "${STAT}x" != "x" ]; then |
| … | |
… | |
| 215 | |
240 | |
| 216 | local installvendorarch |
241 | local installvendorarch |
| 217 | eval `perl '-V:installvendorarch'` |
242 | eval `perl '-V:installvendorarch'` |
| 218 | VENDOR_ARCH=${installvendorarch} |
243 | VENDOR_ARCH=${installvendorarch} |
| 219 | |
244 | |
| 220 | if [ "${USE_BUILDER}" == "yes" ]; then |
245 | if [ "${PREFER_BUILDPL}" == "yes" ]; then |
| 221 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
246 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
| 222 | if [ -f ${S}/Build.PL ]; then |
247 | if [ -f ${S}/Build.PL ]; then |
| 223 | if [ ${PN} == "module-build" ]; then |
248 | if [ ${PN} == "module-build" ]; then |
| 224 | BUILDER_VER="1" # A bootstrapping if you will |
249 | BUILDER_VER="1" # A bootstrapping if you will |
| 225 | else |
250 | else |
| 226 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
251 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
252 | fi |
| 227 | fi |
253 | fi |
| 228 | fi |
254 | fi |
| 229 | fi |
|
|
| 230 | fi |
255 | fi |
| 231 | |
256 | |
| 232 | if [ -f /usr/bin/perl ] |
257 | if [ -f /usr/bin/perl ] |
| 233 | then |
258 | then |
| 234 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
259 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 235 | fi |
260 | fi |
| 236 | } |
261 | } |
| 237 | |
262 | |
| 238 | fixlocalpod() { |
263 | fixlocalpod() { |
| 239 | perlinfo |
264 | perlinfo |
| 240 | dodir ${POD_DIR} |
|
|
| 241 | |
265 | |
| 242 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
266 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 243 | then |
267 | 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 |
268 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 250 | fi |
269 | fi |
| 251 | |
270 | |
| 252 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
271 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 253 | then |
272 | 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 |
273 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 260 | fi |
274 | fi |
| 261 | |
275 | |
| 262 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
276 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 263 | then |
277 | 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 |
278 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
| 270 | fi |
279 | fi |
| 271 | } |
280 | } |
| 272 | |
281 | |
| 273 | updatepod() { |
282 | updatepod() { |
| 274 | perlinfo |
283 | perlinfo |
| 275 | |
284 | |
| 276 | if [ -d "${POD_DIR}" ] |
285 | if [ -d "${POD_DIR}" ] |
| 277 | then |
286 | then |
| 278 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
287 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
| 279 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
288 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
| 280 | rm -f ${FILE} |
289 | rm -f ${FILE} |
| 281 | done |
290 | done |
| 282 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
291 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 283 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
292 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 284 | rm -f ${FILE} |
293 | rm -f ${FILE} |
| 285 | done |
294 | done |
| 286 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
295 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
| 287 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
296 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
| 288 | rm -f ${FILE} |
297 | rm -f ${FILE} |
| 289 | done |
298 | done |
| 290 | fi |
299 | fi |
| 291 | } |
300 | } |