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.76 2005/07/11 15:08:06 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.96 2006/06/12 20:11:39 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 \ |
12 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test |
13 | src_compile src_install src_test |
|
|
14 | |
13 | |
15 | # 2005.04.28 mcummings |
14 | # 2005.04.28 mcummings |
16 | # 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 |
17 | # 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 |
18 | # 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 |
… | |
… | |
52 | # 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 |
53 | # 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 |
54 | # 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 |
55 | # 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 |
56 | # 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 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 |
57 | |
72 | |
58 | |
73 | |
59 | |
74 | IUSE="minimal" |
60 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
75 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
61 | RDEPEND="${DEPEND}" |
76 | RDEPEND="!minimal? ( ${DEPEND} )" |
62 | SRC_PREP="no" |
77 | SRC_PREP="no" |
63 | SRC_TEST="skip" |
78 | SRC_TEST="skip" |
|
|
79 | USE_BUILDER="yes" |
64 | |
80 | |
65 | PERL_VERSION="" |
81 | PERL_VERSION="" |
66 | SITE_ARCH="" |
82 | SITE_ARCH="" |
67 | SITE_LIB="" |
83 | SITE_LIB="" |
68 | VENDOR_LIB="" |
84 | VENDOR_LIB="" |
… | |
… | |
74 | perl-module_src_prep() { |
90 | perl-module_src_prep() { |
75 | |
91 | |
76 | perlinfo |
92 | perlinfo |
77 | |
93 | |
78 | export PERL_MM_USE_DEFAULT=1 |
94 | export PERL_MM_USE_DEFAULT=1 |
|
|
95 | # Disable ExtUtils::AutoInstall from prompting |
|
|
96 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
79 | |
97 | |
80 | |
98 | |
81 | SRC_PREP="yes" |
99 | SRC_PREP="yes" |
82 | if [ -f ${S}/Build.PL ]; then |
100 | if [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
83 | if [ -z ${BUILDER_VER} ]; then |
101 | einfo "Using ExtUtils::MakeMaker" |
84 | eerror |
|
|
85 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
86 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
87 | eerror "on dev-perl/module-build" |
|
|
88 | eerror "${BUILDER_VER}" |
|
|
89 | eerror |
|
|
90 | die |
|
|
91 | else |
|
|
92 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
93 | fi |
|
|
94 | else |
|
|
95 | perl Makefile.PL ${myconf} \ |
102 | #perl Makefile.PL ${myconf} \ |
96 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
103 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
|
|
104 | 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 |
|
|
110 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
|
|
111 | einfo "No Make or Build file detected..." |
|
|
112 | return |
97 | fi |
113 | fi |
98 | } |
114 | } |
99 | |
115 | |
100 | perl-module_src_compile() { |
116 | perl-module_src_compile() { |
101 | |
117 | |
102 | perlinfo |
118 | perlinfo |
103 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
119 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
104 | if [ -z ${BUILDER_VER} ]; then |
120 | if [ -f Makefile ]; then |
105 | make ${mymake} || die "compilation failed" |
121 | make ${mymake} || die "compilation failed" |
106 | else |
122 | elif [ -f Build ]; then |
107 | perl ${S}/Build build |
123 | perl Build build || die "compilation failed" |
108 | fi |
124 | fi |
109 | |
125 | |
110 | } |
126 | } |
111 | |
127 | |
112 | perl-module_src_test() { |
128 | perl-module_src_test() { |
113 | if [ "${SRC_TEST}" == "do" ]; then |
129 | if [ "${SRC_TEST}" == "do" ]; then |
114 | perlinfo |
130 | perlinfo |
115 | if [ -z ${BUILDER_VER} ]; then |
131 | if [ -f Makefile ]; then |
116 | make test || die "test failed" |
132 | make test || die "test failed" |
117 | else |
133 | elif [ -f Build ]; then |
118 | perl ${S}/Build test || die "test failed" |
134 | perl Build test || die "test failed" |
119 | fi |
135 | fi |
120 | fi |
136 | fi |
121 | } |
137 | } |
122 | |
138 | |
123 | perl-module_src_install() { |
139 | perl-module_src_install() { |
124 | |
140 | |
125 | perlinfo |
141 | perlinfo |
126 | |
142 | |
127 | test -z ${mytargets} && mytargets="install" |
143 | test -z ${mytargets} && mytargets="install" |
128 | |
144 | |
129 | if [ -z ${BUILDER_VER} ]; then |
145 | if [ -f Makefile ]; then |
130 | make ${myinst} ${mytargets} || die |
146 | make ${myinst} ${mytargets} || die |
131 | else |
147 | elif [ -f Build ]; then |
132 | perl ${S}/Build install |
148 | perl ${S}/Build install |
133 | fi |
149 | fi |
134 | |
150 | |
135 | fixlocalpod |
151 | fixlocalpod |
136 | |
152 | |
… | |
… | |
139 | if [ "${STAT}x" != "x" ]; then |
155 | if [ "${STAT}x" != "x" ]; then |
140 | sed -i -e "s:${D}:/:g" ${FILE} |
156 | sed -i -e "s:${D}:/:g" ${FILE} |
141 | fi |
157 | fi |
142 | done |
158 | done |
143 | |
159 | |
144 | for doc in Change* MANIFEST* README*; do |
160 | for doc in Change* MANIFEST* README* ${mydoc}; do |
145 | [ -s "$doc" ] && dodoc $doc |
161 | [ -s "$doc" ] && dodoc $doc |
146 | done |
162 | done |
147 | if [ -s "${mydoc}" ]; then |
|
|
148 | dodoc ${mydoc} |
|
|
149 | fi |
|
|
150 | } |
163 | } |
151 | |
164 | |
152 | |
165 | |
153 | perl-module_pkg_setup() { |
166 | perl-module_pkg_setup() { |
154 | |
167 | |
… | |
… | |
161 | perlinfo |
174 | perlinfo |
162 | } |
175 | } |
163 | |
176 | |
164 | perl-module_pkg_postinst() { |
177 | perl-module_pkg_postinst() { |
165 | |
178 | |
|
|
179 | einfo "Man pages are not installed for most modules now." |
|
|
180 | einfo "Please use perldoc instead." |
166 | updatepod |
181 | updatepod |
167 | } |
182 | } |
168 | |
183 | |
169 | perl-module_pkg_prerm() { |
184 | perl-module_pkg_prerm() { |
170 | |
185 | |
… | |
… | |
176 | updatepod |
191 | updatepod |
177 | } |
192 | } |
178 | |
193 | |
179 | perlinfo() { |
194 | perlinfo() { |
180 | |
195 | |
|
|
196 | local version |
181 | eval `perl '-V:version'` |
197 | eval `perl '-V:version'` |
182 | PERL_VERSION=${version} |
198 | PERL_VERSION=${version} |
183 | |
199 | |
|
|
200 | local installsitearch |
184 | eval `perl '-V:installsitearch'` |
201 | eval `perl '-V:installsitearch'` |
185 | SITE_ARCH=${installsitearch} |
202 | SITE_ARCH=${installsitearch} |
186 | |
203 | |
|
|
204 | local installsitelib |
187 | eval `perl '-V:installsitearch'` |
205 | eval `perl '-V:installsitelib'` |
188 | SITE_LIB=${installsitearch} |
206 | SITE_LIB=${installsitelib} |
189 | |
207 | |
|
|
208 | local installarchlib |
190 | eval `perl '-V:installarchlib'` |
209 | eval `perl '-V:installarchlib'` |
191 | ARCH_LIB=${installarchlib} |
210 | ARCH_LIB=${installarchlib} |
192 | |
211 | |
|
|
212 | local installvendorlib |
193 | eval `perl '-V:installvendorlib'` |
213 | eval `perl '-V:installvendorlib'` |
194 | VENDOR_LIB=${installvendorlib} |
214 | VENDOR_LIB=${installvendorlib} |
195 | |
215 | |
|
|
216 | local installvendorarch |
196 | eval `perl '-V:installvendorarch'` |
217 | eval `perl '-V:installvendorarch'` |
197 | VENDOR_ARCH=${installvendorarch} |
218 | VENDOR_ARCH=${installvendorarch} |
198 | |
219 | |
|
|
220 | if [ "${USE_BUILDER}" == "yes" ]; then |
|
|
221 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
199 | if [ -f ${S}/Build.PL ]; then |
222 | if [ -f ${S}/Build.PL ]; then |
200 | if [ ${PN} == "module-build" ]; then |
223 | if [ ${PN} == "module-build" ]; then |
201 | BUILDER_VER="1" # A bootstrapping if you will |
224 | BUILDER_VER="1" # A bootstrapping if you will |
202 | else |
225 | else |
203 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
226 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
227 | fi |
204 | fi |
228 | fi |
|
|
229 | fi |
205 | fi |
230 | fi |
206 | |
231 | |
207 | if [ -f /usr/bin/perl ] |
232 | if [ -f /usr/bin/perl ] |
208 | then |
233 | then |
209 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
234 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |