| 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.69 2005/05/14 14:06:39 mcummings 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 | ECLASS=perl-module |
|
|
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 13 | |
11 | |
| 14 | 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 |
| 15 | src_compile src_install src_test \ |
|
|
| 16 | perlinfo updatepod |
|
|
| 17 | |
13 | |
| 18 | # 2005.04.28 mcummings |
14 | # 2005.04.28 mcummings |
| 19 | # 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 |
| 20 | # 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 |
| 21 | # 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 |
| … | |
… | |
| 42 | # Updated eclass to include a specific function for dealing with perlocal.pods - |
38 | # Updated eclass to include a specific function for dealing with perlocal.pods - |
| 43 | # this should avoid the conflicts we've been running into with the introduction |
39 | # this should avoid the conflicts we've been running into with the introduction |
| 44 | # of file collision features by giving us a single exportable function to deal |
40 | # of file collision features by giving us a single exportable function to deal |
| 45 | # with the pods. Modifications to the eclass provided by Yaakov S |
41 | # with the pods. Modifications to the eclass provided by Yaakov S |
| 46 | # <yselkowitz@hotmail.com> in bug 83622 |
42 | # <yselkowitz@hotmail.com> in bug 83622 |
| 47 | # |
43 | # |
| 48 | # <later the same day> |
44 | # <later the same day> |
| 49 | # The long awaited (by me) fix for automagically detecting and dealing |
45 | # The long awaited (by me) fix for automagically detecting and dealing |
| 50 | # with module-build dependancies. I've chosen not to make it a default dep since |
46 | # with module-build dependancies. I've chosen not to make it a default dep since |
| 51 | # this adds overhead to people that might not otherwise need it, and instead |
47 | # this adds overhead to people that might not otherwise need it, and instead |
| 52 | # modified the eclass to detect the existence of a Build.PL and behave |
48 | # modified the eclass to detect the existence of a Build.PL and behave |
| … | |
… | |
| 55 | # 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 |
| 56 | # 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 |
| 57 | # 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 |
| 58 | # 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 |
| 59 | # 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 |
| 60 | |
72 | |
| 61 | |
73 | |
| 62 | |
74 | IUSE="minimal" |
| 63 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
75 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
|
|
76 | RDEPEND="!minimal? ( ${DEPEND} )" |
| 64 | SRC_PREP="no" |
77 | SRC_PREP="no" |
| 65 | SRC_TEST="skip" |
78 | SRC_TEST="skip" |
|
|
79 | USE_BUILDER="yes" |
| 66 | |
80 | |
| 67 | PERL_VERSION="" |
81 | PERL_VERSION="" |
| 68 | SITE_ARCH="" |
82 | SITE_ARCH="" |
| 69 | SITE_LIB="" |
83 | SITE_LIB="" |
| 70 | VENDOR_LIB="" |
84 | VENDOR_LIB="" |
| … | |
… | |
| 76 | perl-module_src_prep() { |
90 | perl-module_src_prep() { |
| 77 | |
91 | |
| 78 | perlinfo |
92 | perlinfo |
| 79 | |
93 | |
| 80 | 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" |
| 81 | |
97 | |
| 82 | |
98 | |
| 83 | SRC_PREP="yes" |
99 | SRC_PREP="yes" |
| 84 | if [ -f ${S}/Build.PL ]; then |
100 | if [ -f Makefile.PL ] && [ ! ${PN} == "module-build" ]; then |
| 85 | if [ -z ${BUILDER_VER} ]; then |
101 | einfo "Using ExtUtils::MakeMaker" |
| 86 | eerror |
|
|
| 87 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
| 88 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
| 89 | eerror "on dev-perl/module-build" |
|
|
| 90 | eerror "${BUILDER_VER}" |
|
|
| 91 | eerror |
|
|
| 92 | die |
|
|
| 93 | else |
|
|
| 94 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
| 95 | fi |
|
|
| 96 | else |
|
|
| 97 | perl Makefile.PL ${myconf} \ |
102 | #perl Makefile.PL ${myconf} \ |
| 98 | 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 |
| 99 | fi |
113 | fi |
| 100 | } |
114 | } |
| 101 | |
115 | |
| 102 | perl-module_src_compile() { |
116 | perl-module_src_compile() { |
| 103 | |
117 | |
| 104 | perlinfo |
118 | perlinfo |
| 105 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
119 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 106 | if [ -z ${BUILDER_VER} ]; then |
120 | if [ -f Makefile ]; then |
| 107 | make ${mymake} || die "compilation failed" |
121 | make ${mymake} || die "compilation failed" |
| 108 | else |
122 | elif [ -f Build ]; then |
| 109 | perl ${S}/Build build |
123 | perl Build build || die "compilation failed" |
| 110 | fi |
124 | fi |
| 111 | |
125 | |
| 112 | } |
126 | } |
| 113 | |
127 | |
| 114 | perl-module_src_test() { |
128 | perl-module_src_test() { |
| 115 | if [ "${SRC_TEST}" == "do" ]; then |
129 | if [ "${SRC_TEST}" == "do" ]; then |
| 116 | perlinfo |
130 | perlinfo |
| 117 | if [ -z ${BUILDER_VER} ]; then |
131 | if [ -f Makefile ]; then |
| 118 | make test || die "test failed" |
132 | make test || die "test failed" |
| 119 | else |
133 | elif [ -f Build ]; then |
| 120 | perl ${S}/Build test || die "test failed" |
134 | perl Build test || die "test failed" |
| 121 | fi |
135 | fi |
| 122 | fi |
136 | fi |
| 123 | } |
137 | } |
| 124 | |
138 | |
| 125 | perl-module_src_install() { |
139 | perl-module_src_install() { |
| 126 | |
140 | |
| 127 | perlinfo |
141 | perlinfo |
| 128 | |
142 | |
| 129 | test -z ${mytargets} && mytargets="install" |
143 | test -z ${mytargets} && mytargets="install" |
| 130 | |
144 | |
| 131 | if [ -z ${BUILDER_VER} ]; then |
145 | if [ -f Makefile ]; then |
| 132 | make ${myinst} ${mytargets} || die |
146 | make ${myinst} ${mytargets} || die |
| 133 | else |
147 | elif [ -f Build ]; then |
| 134 | perl ${S}/Build install |
148 | perl ${S}/Build install |
| 135 | fi |
149 | fi |
| 136 | |
150 | |
| 137 | fixlocalpod |
151 | fixlocalpod |
| 138 | |
152 | |
| … | |
… | |
| 141 | if [ "${STAT}x" != "x" ]; then |
155 | if [ "${STAT}x" != "x" ]; then |
| 142 | sed -i -e "s:${D}:/:g" ${FILE} |
156 | sed -i -e "s:${D}:/:g" ${FILE} |
| 143 | fi |
157 | fi |
| 144 | done |
158 | done |
| 145 | |
159 | |
| 146 | for doc in Change* MANIFEST* README*; do |
160 | for doc in Change* MANIFEST* README* ${mydoc}; do |
| 147 | [ -s "$doc" ] && dodoc $doc |
161 | [ -s "$doc" ] && dodoc $doc |
| 148 | done |
162 | done |
| 149 | dodoc ${mydoc} |
|
|
| 150 | } |
163 | } |
| 151 | |
164 | |
| 152 | |
165 | |
| 153 | perl-module_pkg_setup() { |
166 | perl-module_pkg_setup() { |
| 154 | |
167 | |
| 155 | perlinfo |
168 | perlinfo |
| 156 | } |
169 | } |
| 157 | |
170 | |
| 158 | |
171 | |
| 159 | perl-module_pkg_preinst() { |
172 | perl-module_pkg_preinst() { |
| 160 | |
173 | |
| 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 | |
| 171 | updatepod |
186 | updatepod |
| 172 | } |
187 | } |
| 173 | |
188 | |
| 174 | perl-module_pkg_postrm() { |
189 | perl-module_pkg_postrm() { |
| 175 | |
190 | |
| 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}" |
| 210 | fi |
235 | fi |
| 211 | } |
236 | } |
| 212 | |
237 | |
| 213 | fixlocalpod() { |
238 | fixlocalpod() { |
| … | |
… | |
| 221 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
246 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 222 | touch ${D}/${POD_DIR}/${P}.pod.arch |
247 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 223 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
248 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 224 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
249 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 225 | fi |
250 | fi |
| 226 | |
251 | |
| 227 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
252 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 228 | then |
253 | then |
| 229 | touch ${D}/${POD_DIR}/${P}.pod |
254 | touch ${D}/${POD_DIR}/${P}.pod |
| 230 | sed -e "s:${D}::g" \ |
255 | sed -e "s:${D}::g" \ |
| 231 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
256 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 232 | touch ${D}/${POD_DIR}/${P}.pod.site |
257 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 233 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
258 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 234 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
259 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 235 | fi |
260 | fi |
| 236 | |
261 | |
| 237 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
262 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 238 | then |
263 | then |
| 239 | touch ${D}/${POD_DIR}/${P}.pod |
264 | touch ${D}/${POD_DIR}/${P}.pod |
| 240 | sed -e "s:${D}::g" \ |
265 | sed -e "s:${D}::g" \ |
| 241 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
266 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 242 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
267 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
| 243 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
268 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |