| 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.111 2008/02/06 02:39:04 robbat2 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 perlinfo fixlocalpod updatepod |
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 |
| 18 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
19 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
| 19 | # as many bug reports as we have lately. |
20 | # as many bug reports as we have lately. |
| 20 | |
21 | # |
| 21 | # 2004.05.10 rac |
22 | # 2004.05.10 rac |
| 22 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
23 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
| 23 | # actuality, this should be handled in the perl ebuild, so every perl |
24 | # actuality, this should be handled in the perl ebuild, so every perl |
| 24 | # ebuild should block versions of MakeMaker older than the one it |
25 | # ebuild should block versions of MakeMaker older than the one it |
| 25 | # carries. in the meantime, since we have dumped support for MakeMaker |
26 | # carries. in the meantime, since we have dumped support for MakeMaker |
| … | |
… | |
| 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??). |
|
|
83 | # |
|
|
84 | # 2007.08.19 ian |
|
|
85 | # Added ${myconf} - bug #176818 |
|
|
86 | # |
|
|
87 | # 2007.10.17 robbat2 |
|
|
88 | # Added the 'MODULE_AUTHOR' variable. Set it before inheriting the eclass |
|
|
89 | # and it will set your HOMEPAGE and SRC_URI correctly for a CPAN package. |
| 72 | |
90 | |
|
|
91 | [ -z "${SRC_URI}" -a -n "${MODULE_AUTHOR}" ] && \ |
|
|
92 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION}/${P}.tar.gz" |
|
|
93 | [ -z "${HOMEPAGE}" ] && HOMEPAGE="http://search.cpan.org/search?query=${PN}&mode=dist" |
| 73 | |
94 | |
| 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" |
95 | SRC_PREP="no" |
| 78 | SRC_TEST="skip" |
96 | SRC_TEST="skip" |
| 79 | USE_BUILDER="yes" |
97 | PREFER_BUILDPL="yes" |
| 80 | |
98 | |
| 81 | PERL_VERSION="" |
99 | PERL_VERSION="" |
| 82 | SITE_ARCH="" |
100 | SITE_ARCH="" |
| 83 | SITE_LIB="" |
101 | SITE_LIB="" |
| 84 | VENDOR_LIB="" |
102 | VENDOR_LIB="" |
| 85 | VENDOR_ARCH="" |
103 | VENDOR_ARCH="" |
| 86 | ARCH_LIB="" |
104 | ARCH_LIB="" |
| 87 | POD_DIR="" |
105 | POD_DIR="" |
| 88 | BUILDER_VER="" |
106 | BUILDER_VER="" |
|
|
107 | pm_echovar="" |
|
|
108 | |
|
|
109 | perl-module_src_unpack() { |
|
|
110 | if [[ -n ${PATCHES} ]]; then |
|
|
111 | base_src_unpack unpack |
|
|
112 | base_src_unpack autopatch |
|
|
113 | else |
|
|
114 | base_src_unpack unpack |
|
|
115 | fi |
|
|
116 | } |
| 89 | |
117 | |
| 90 | perl-module_src_prep() { |
118 | perl-module_src_prep() { |
| 91 | |
119 | |
| 92 | perlinfo |
120 | perlinfo |
| 93 | |
121 | |
| 94 | export PERL_MM_USE_DEFAULT=1 |
122 | export PERL_MM_USE_DEFAULT=1 |
|
|
123 | # Disable ExtUtils::AutoInstall from prompting |
|
|
124 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 95 | |
125 | |
| 96 | |
126 | |
| 97 | SRC_PREP="yes" |
127 | SRC_PREP="yes" |
| 98 | if [ -f ${S}/Build.PL ] && [ "${USE_BUILDER}" == "yes" ]; then |
128 | find ${S} -type d -name "\.svn" -exec /bin/rm -rf {} \; 2>/dev/null |
|
|
129 | if [ "${PREFER_BUILDPL}" == "yes" ] && ( [ -f Build.PL ] || [ ${PN} == "module-build" ] ); then |
| 99 | einfo "Using Module::Build" |
130 | einfo "Using Module::Build" |
| 100 | if [ -z ${BUILDER_VER} ]; then |
131 | echo "$pm_echovar" | perl Build.PL ${myconf} --installdirs=vendor --destdir=${D} --libdoc= || die "Unable to build! (are you using USE=\"build\"?)" |
| 101 | eerror |
132 | 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" |
133 | einfo "Using ExtUtils::MakeMaker" |
| 113 | #perl Makefile.PL ${myconf} \ |
|
|
| 114 | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
134 | echo "$pm_echovar" | perl Makefile.PL ${myconf} INSTALLMAN3DIR='none'\ |
| 115 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
135 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
136 | fi |
|
|
137 | if [ ! -f Build.PL ] && [ ! -f Makefile.PL ]; then |
|
|
138 | einfo "No Make or Build file detected..." |
|
|
139 | return |
| 116 | fi |
140 | fi |
| 117 | } |
141 | } |
| 118 | |
142 | |
| 119 | perl-module_src_compile() { |
143 | perl-module_src_compile() { |
| 120 | |
144 | |
| 121 | perlinfo |
145 | perlinfo |
| 122 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
146 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 123 | if [ -z ${BUILDER_VER} ]; then |
147 | if [ -f Makefile ]; then |
| 124 | make ${mymake} || die "compilation failed" |
148 | make ${mymake} || die "compilation failed" |
| 125 | else |
149 | elif [ -f Build ]; then |
| 126 | perl ${S}/Build build |
150 | perl Build build || die "compilation failed" |
| 127 | fi |
151 | fi |
|
|
152 | fixlocalpod |
| 128 | |
153 | |
| 129 | } |
154 | } |
| 130 | |
155 | |
| 131 | perl-module_src_test() { |
156 | perl-module_src_test() { |
| 132 | if [ "${SRC_TEST}" == "do" ]; then |
157 | if [ "${SRC_TEST}" == "do" ]; then |
| 133 | perlinfo |
158 | perlinfo |
| 134 | if [ -z ${BUILDER_VER} ]; then |
159 | if [ -f Makefile ]; then |
| 135 | make test || die "test failed" |
160 | make test || die "test failed" |
| 136 | else |
161 | elif [ -f Build ]; then |
| 137 | perl ${S}/Build test || die "test failed" |
162 | perl Build test || die "test failed" |
| 138 | fi |
163 | fi |
| 139 | fi |
164 | fi |
| 140 | } |
165 | } |
| 141 | |
166 | |
| 142 | perl-module_src_install() { |
167 | perl-module_src_install() { |
| 143 | |
168 | |
| 144 | perlinfo |
169 | perlinfo |
| 145 | |
170 | |
| 146 | test -z ${mytargets} && mytargets="install" |
171 | test -z ${mytargets} && mytargets="install" |
| 147 | |
172 | |
| 148 | if [ -z ${BUILDER_VER} ]; then |
173 | if [ -f Makefile ]; then |
| 149 | make ${myinst} ${mytargets} || die |
174 | make ${myinst} ${mytargets} || die |
| 150 | else |
175 | elif [ -f Build ]; then |
| 151 | perl ${S}/Build install |
176 | perl ${S}/Build install |
| 152 | fi |
177 | fi |
|
|
178 | |
|
|
179 | |
|
|
180 | einfo "Cleaning out stray man files" |
|
|
181 | for FILE in `find ${D} -type f -name "*.3pm*"`; do |
|
|
182 | rm -rf ${FILE} |
|
|
183 | done |
|
|
184 | find ${D}/usr/share/man -depth -type d 2>/dev/null | xargs -r rmdir 2>/dev/null |
| 153 | |
185 | |
| 154 | fixlocalpod |
186 | fixlocalpod |
| 155 | |
187 | |
| 156 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
188 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
| 157 | STAT=`file $FILE| grep -i " text"` |
189 | STAT=`file $FILE| grep -i " text"` |
| … | |
… | |
| 177 | perlinfo |
209 | perlinfo |
| 178 | } |
210 | } |
| 179 | |
211 | |
| 180 | perl-module_pkg_postinst() { |
212 | perl-module_pkg_postinst() { |
| 181 | |
213 | |
|
|
214 | einfo "Man pages are not installed for most modules now." |
|
|
215 | einfo "Please use perldoc instead." |
| 182 | updatepod |
216 | updatepod |
| 183 | } |
217 | } |
| 184 | |
218 | |
| 185 | perl-module_pkg_prerm() { |
219 | perl-module_pkg_prerm() { |
| 186 | |
220 | |
| … | |
… | |
| 216 | |
250 | |
| 217 | local installvendorarch |
251 | local installvendorarch |
| 218 | eval `perl '-V:installvendorarch'` |
252 | eval `perl '-V:installvendorarch'` |
| 219 | VENDOR_ARCH=${installvendorarch} |
253 | VENDOR_ARCH=${installvendorarch} |
| 220 | |
254 | |
| 221 | if [ "${USE_BUILDER}" == "yes" ]; then |
255 | if [ "${PREFER_BUILDPL}" == "yes" ]; then |
|
|
256 | if [ ! -f ${S}/Makefile.PL ] || [ ${PN} == "module-build" ]; then |
| 222 | if [ -f ${S}/Build.PL ]; then |
257 | if [ -f ${S}/Build.PL ]; then |
| 223 | if [ ${PN} == "module-build" ]; then |
258 | if [ ${PN} == "module-build" ]; then |
| 224 | BUILDER_VER="1" # A bootstrapping if you will |
259 | BUILDER_VER="1" # A bootstrapping if you will |
| 225 | else |
260 | else |
| 226 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
261 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
262 | fi |
| 227 | fi |
263 | fi |
| 228 | fi |
264 | fi |
| 229 | fi |
265 | fi |
| 230 | |
266 | |
| 231 | if [ -f /usr/bin/perl ] |
267 | if [ -f /usr/bin/perl ] |
| … | |
… | |
| 234 | fi |
270 | fi |
| 235 | } |
271 | } |
| 236 | |
272 | |
| 237 | fixlocalpod() { |
273 | fixlocalpod() { |
| 238 | perlinfo |
274 | perlinfo |
| 239 | dodir ${POD_DIR} |
|
|
| 240 | |
275 | |
| 241 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
276 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 242 | then |
277 | then |
| 243 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 244 | sed -e "s:${D}::g" \ |
|
|
| 245 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 246 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 247 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 248 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
278 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 249 | fi |
279 | fi |
| 250 | |
280 | |
| 251 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
281 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 252 | then |
282 | then |
| 253 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 254 | sed -e "s:${D}::g" \ |
|
|
| 255 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 256 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 257 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 258 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
283 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 259 | fi |
284 | fi |
| 260 | |
285 | |
| 261 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
286 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 262 | then |
287 | then |
| 263 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 264 | sed -e "s:${D}::g" \ |
|
|
| 265 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 266 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 267 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 268 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
288 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
| 269 | fi |
289 | fi |
| 270 | } |
290 | } |
| 271 | |
291 | |
| 272 | updatepod() { |
292 | updatepod() { |
| 273 | perlinfo |
293 | perlinfo |
| 274 | |
294 | |
| 275 | if [ -d "${POD_DIR}" ] |
295 | if [ -d "${POD_DIR}" ] |
| 276 | then |
296 | then |
| 277 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
297 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
| 278 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
298 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
| 279 | rm -f ${FILE} |
299 | rm -f ${FILE} |
| 280 | done |
300 | done |
| 281 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
301 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 282 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
302 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 283 | rm -f ${FILE} |
303 | rm -f ${FILE} |
| 284 | done |
304 | done |
| 285 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
305 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
| 286 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
306 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
| 287 | rm -f ${FILE} |
307 | rm -f ${FILE} |
| 288 | done |
308 | done |
| 289 | fi |
309 | fi |
| 290 | } |
310 | } |