| 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.83 2006/02/28 02:56:48 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.97 2006/06/14 00:31:44 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 | |
11 | |
| 12 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test perlinfo fixlocalpod updatepod |
12 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test |
| 13 | |
13 | |
| 14 | # 2005.04.28 mcummings |
14 | # 2005.04.28 mcummings |
| 15 | # 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 |
| 16 | # 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 |
| 17 | # 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 |
| … | |
… | |
| 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" |
84 | IUSE="minimal" |
| 75 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
85 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
| 76 | RDEPEND="!minimal? ( ${DEPEND} )" |
86 | RDEPEND="!minimal? ( ${DEPEND} )" |
| 77 | SRC_PREP="no" |
87 | SRC_PREP="no" |
| 78 | SRC_TEST="skip" |
88 | SRC_TEST="skip" |
| 79 | USE_BUILDER="yes" |
89 | PREFER_BUILDPL="yes" |
| 80 | |
90 | |
| 81 | PERL_VERSION="" |
91 | PERL_VERSION="" |
| 82 | SITE_ARCH="" |
92 | SITE_ARCH="" |
| 83 | SITE_LIB="" |
93 | SITE_LIB="" |
| 84 | VENDOR_LIB="" |
94 | VENDOR_LIB="" |
| … | |
… | |
| 90 | perl-module_src_prep() { |
100 | perl-module_src_prep() { |
| 91 | |
101 | |
| 92 | perlinfo |
102 | perlinfo |
| 93 | |
103 | |
| 94 | export PERL_MM_USE_DEFAULT=1 |
104 | export PERL_MM_USE_DEFAULT=1 |
|
|
105 | # Disable ExtUtils::AutoInstall from prompting |
|
|
106 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 95 | |
107 | |
| 96 | |
108 | |
| 97 | SRC_PREP="yes" |
109 | SRC_PREP="yes" |
| 98 | if [ -f ${S}/Build.PL ] && [ "${USE_BUILDER}" == "yes" ]; then |
110 | if [ "${PREFER_BUILDPL}" == "yes" ] && ( [ -f Build.PL ] || [ ${PN} == "module-build" ] ); then |
| 99 | einfo "Using Module::Build" |
111 | einfo "Using Module::Build" |
| 100 | if [ -z ${BUILDER_VER} ]; then |
112 | perl Build.PL --installdirs=vendor --destdir=${D} --libdoc= || die "Unable to build! (are you using USE=\"build\"?)" |
| 101 | eerror |
113 | elif [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
| 102 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
| 103 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
| 104 | eerror "on dev-perl/module-build" |
|
|
| 105 | eerror "${BUILDER_VER}" |
|
|
| 106 | eerror |
|
|
| 107 | die |
|
|
| 108 | else |
|
|
| 109 | perl ${S}/Build.PL installdirs=vendor destdir=${D} libdoc= |
|
|
| 110 | fi |
|
|
| 111 | else |
|
|
| 112 | einfo "Using ExtUtils::MakeMaker" |
114 | einfo "Using ExtUtils::MakeMaker" |
| 113 | #perl Makefile.PL ${myconf} \ |
115 | #perl Makefile.PL ${myconf} \ |
| 114 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
116 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
| 115 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
117 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
118 | fi |
|
|
119 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
|
|
120 | einfo "No Make or Build file detected..." |
|
|
121 | return |
| 116 | fi |
122 | fi |
| 117 | } |
123 | } |
| 118 | |
124 | |
| 119 | perl-module_src_compile() { |
125 | perl-module_src_compile() { |
| 120 | |
126 | |
| 121 | perlinfo |
127 | perlinfo |
| 122 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
128 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 123 | if [ -z ${BUILDER_VER} ]; then |
129 | if [ -f Makefile ]; then |
| 124 | make ${mymake} || die "compilation failed" |
130 | make ${mymake} || die "compilation failed" |
| 125 | else |
131 | elif [ -f Build ]; then |
| 126 | perl ${S}/Build build |
132 | perl Build build || die "compilation failed" |
| 127 | fi |
133 | fi |
| 128 | |
134 | |
| 129 | } |
135 | } |
| 130 | |
136 | |
| 131 | perl-module_src_test() { |
137 | perl-module_src_test() { |
| 132 | if [ "${SRC_TEST}" == "do" ]; then |
138 | if [ "${SRC_TEST}" == "do" ]; then |
| 133 | perlinfo |
139 | perlinfo |
| 134 | if [ -z ${BUILDER_VER} ]; then |
140 | if [ -f Makefile ]; then |
| 135 | make test || die "test failed" |
141 | make test || die "test failed" |
| 136 | else |
142 | elif [ -f Build ]; then |
| 137 | perl ${S}/Build test || die "test failed" |
143 | perl Build test || die "test failed" |
| 138 | fi |
144 | fi |
| 139 | fi |
145 | fi |
| 140 | } |
146 | } |
| 141 | |
147 | |
| 142 | perl-module_src_install() { |
148 | perl-module_src_install() { |
| 143 | |
149 | |
| 144 | perlinfo |
150 | perlinfo |
| 145 | |
151 | |
| 146 | test -z ${mytargets} && mytargets="install" |
152 | test -z ${mytargets} && mytargets="install" |
| 147 | |
153 | |
| 148 | if [ -z ${BUILDER_VER} ]; then |
154 | if [ -f Makefile ]; then |
| 149 | make ${myinst} ${mytargets} || die |
155 | make ${myinst} ${mytargets} || die |
| 150 | else |
156 | elif [ -f Build ]; then |
| 151 | perl ${S}/Build install |
157 | perl ${S}/Build install |
| 152 | fi |
158 | fi |
| 153 | |
159 | |
| 154 | fixlocalpod |
160 | fixlocalpod |
| 155 | |
161 | |
| … | |
… | |
| 177 | perlinfo |
183 | perlinfo |
| 178 | } |
184 | } |
| 179 | |
185 | |
| 180 | perl-module_pkg_postinst() { |
186 | perl-module_pkg_postinst() { |
| 181 | |
187 | |
|
|
188 | einfo "Man pages are not installed for most modules now." |
|
|
189 | einfo "Please use perldoc instead." |
| 182 | updatepod |
190 | updatepod |
| 183 | } |
191 | } |
| 184 | |
192 | |
| 185 | perl-module_pkg_prerm() { |
193 | perl-module_pkg_prerm() { |
| 186 | |
194 | |
| … | |
… | |
| 216 | |
224 | |
| 217 | local installvendorarch |
225 | local installvendorarch |
| 218 | eval `perl '-V:installvendorarch'` |
226 | eval `perl '-V:installvendorarch'` |
| 219 | VENDOR_ARCH=${installvendorarch} |
227 | VENDOR_ARCH=${installvendorarch} |
| 220 | |
228 | |
| 221 | if [ "${USE_BUILDER}" == "yes" ]; then |
229 | if [ "${PREFER_BUILDPL}" == "yes" ]; then |
|
|
230 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
| 222 | if [ -f ${S}/Build.PL ]; then |
231 | if [ -f ${S}/Build.PL ]; then |
| 223 | if [ ${PN} == "module-build" ]; then |
232 | if [ ${PN} == "module-build" ]; then |
| 224 | BUILDER_VER="1" # A bootstrapping if you will |
233 | BUILDER_VER="1" # A bootstrapping if you will |
| 225 | else |
234 | else |
| 226 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
235 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
| 227 | fi |
236 | fi |
| 228 | fi |
237 | fi |
|
|
238 | fi |
| 229 | fi |
239 | fi |
| 230 | |
240 | |
| 231 | if [ -f /usr/bin/perl ] |
241 | if [ -f /usr/bin/perl ] |
| 232 | then |
242 | then |
| 233 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
243 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |