| 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.66 2005/03/14 15:09:14 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.70 2005/05/17 14:36:13 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 |
| … | |
… | |
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
12 | INHERITED="${INHERITED} ${ECLASS}" |
| 13 | |
13 | |
| 14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 15 | src_compile src_install src_test \ |
15 | src_compile src_install src_test \ |
| 16 | perlinfo updatepod |
16 | perlinfo updatepod |
|
|
17 | |
|
|
18 | # 2005.04.28 mcummings |
|
|
19 | # 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 |
|
|
21 | # is generally necessary. I've left a block to make sure we still need to set |
|
|
22 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
|
|
23 | # as many bug reports as we have lately. |
| 17 | |
24 | |
| 18 | # 2004.05.10 rac |
25 | # 2004.05.10 rac |
| 19 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
26 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
| 20 | # actuality, this should be handled in the perl ebuild, so every perl |
27 | # actuality, this should be handled in the perl ebuild, so every perl |
| 21 | # ebuild should block versions of MakeMaker older than the one it |
28 | # ebuild should block versions of MakeMaker older than the one it |
| … | |
… | |
| 35 | # Updated eclass to include a specific function for dealing with perlocal.pods - |
42 | # Updated eclass to include a specific function for dealing with perlocal.pods - |
| 36 | # this should avoid the conflicts we've been running into with the introduction |
43 | # this should avoid the conflicts we've been running into with the introduction |
| 37 | # of file collision features by giving us a single exportable function to deal |
44 | # of file collision features by giving us a single exportable function to deal |
| 38 | # with the pods. Modifications to the eclass provided by Yaakov S |
45 | # with the pods. Modifications to the eclass provided by Yaakov S |
| 39 | # <yselkowitz@hotmail.com> in bug 83622 |
46 | # <yselkowitz@hotmail.com> in bug 83622 |
|
|
47 | # |
|
|
48 | # <later the same day> |
|
|
49 | # 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 |
|
|
51 | # 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 |
|
|
53 | # accordingly. This will fix issues with g-cpan builds that needs module-build |
|
|
54 | # support, as well as get rid of the (annoying) style=builder vars. I know of |
|
|
55 | # 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 |
|
|
57 | # 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 |
|
|
59 | # anymore). Enjoy! |
|
|
60 | |
| 40 | |
61 | |
| 41 | |
62 | |
| 42 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
63 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
| 43 | SRC_PREP="no" |
64 | SRC_PREP="no" |
| 44 | SRC_TEST="skip" |
65 | SRC_TEST="skip" |
| … | |
… | |
| 48 | SITE_LIB="" |
69 | SITE_LIB="" |
| 49 | VENDOR_LIB="" |
70 | VENDOR_LIB="" |
| 50 | VENDOR_ARCH="" |
71 | VENDOR_ARCH="" |
| 51 | ARCH_LIB="" |
72 | ARCH_LIB="" |
| 52 | POD_DIR="" |
73 | POD_DIR="" |
|
|
74 | BUILDER_VER="" |
| 53 | |
75 | |
| 54 | perl-module_src_prep() { |
76 | perl-module_src_prep() { |
| 55 | |
77 | |
| 56 | perlinfo |
78 | perlinfo |
| 57 | |
79 | |
| 58 | export PERL_MM_USE_DEFAULT=1 |
80 | export PERL_MM_USE_DEFAULT=1 |
| 59 | |
81 | |
|
|
82 | |
| 60 | SRC_PREP="yes" |
83 | SRC_PREP="yes" |
| 61 | if [ "${style}" == "builder" ]; then |
84 | if [ -f ${S}/Build.PL ]; then |
|
|
85 | if [ -z ${BUILDER_VER} ]; then |
|
|
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 |
| 62 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
94 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
95 | fi |
| 63 | else |
96 | else |
| 64 | perl Makefile.PL ${myconf} \ |
97 | perl Makefile.PL ${myconf} \ |
| 65 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
98 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
| 66 | fi |
99 | fi |
| 67 | } |
100 | } |
| 68 | |
101 | |
| 69 | perl-module_src_compile() { |
102 | perl-module_src_compile() { |
| 70 | |
103 | |
|
|
104 | perlinfo |
| 71 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
105 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 72 | if [ "${style}" != "builder" ]; then |
106 | if [ -z ${BUILDER_VER} ]; then |
| 73 | make ${mymake} || die "compilation failed" |
107 | make ${mymake} || die "compilation failed" |
|
|
108 | else |
|
|
109 | perl ${S}/Build build |
| 74 | fi |
110 | fi |
| 75 | |
111 | |
|
|
112 | } |
|
|
113 | |
|
|
114 | perl-module_src_test() { |
| 76 | if [ "${SRC_TEST}" == "do" ]; then |
115 | if [ "${SRC_TEST}" == "do" ]; then |
| 77 | perl-module_src_test || die "test failed" |
116 | perlinfo |
| 78 | SRC_TEST="done" |
117 | if [ -z ${BUILDER_VER} ]; then |
| 79 | fi |
118 | make test || die "test failed" |
| 80 | } |
|
|
| 81 | |
|
|
| 82 | perl-module_src_test() { |
|
|
| 83 | if [ "${style}" == "builder" ]; then |
|
|
| 84 | perl ${S}/Build test |
|
|
| 85 | else |
119 | else |
| 86 | make test |
120 | perl ${S}/Build test || die "test failed" |
|
|
121 | fi |
| 87 | fi |
122 | fi |
| 88 | } |
123 | } |
| 89 | |
124 | |
| 90 | perl-module_src_install() { |
125 | perl-module_src_install() { |
| 91 | |
126 | |
| 92 | perlinfo |
127 | perlinfo |
| 93 | |
128 | |
| 94 | test -z ${mytargets} && mytargets="install" |
129 | test -z ${mytargets} && mytargets="install" |
| 95 | |
130 | |
| 96 | if [ "${style}" == "builder" ]; then |
131 | if [ -z ${BUILDER_VER} ]; then |
|
|
132 | make ${myinst} ${mytargets} || die |
|
|
133 | else |
| 97 | perl ${S}/Build install |
134 | perl ${S}/Build install |
| 98 | else |
|
|
| 99 | make ${myinst} ${mytargets} || die |
|
|
| 100 | fi |
135 | fi |
| 101 | |
136 | |
| 102 | fixlocalpod |
137 | fixlocalpod |
| 103 | |
138 | |
| 104 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
139 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
| … | |
… | |
| 109 | done |
144 | done |
| 110 | |
145 | |
| 111 | for doc in Change* MANIFEST* README*; do |
146 | for doc in Change* MANIFEST* README*; do |
| 112 | [ -s "$doc" ] && dodoc $doc |
147 | [ -s "$doc" ] && dodoc $doc |
| 113 | done |
148 | done |
|
|
149 | if [ -s "${mydoc}" ]; then |
| 114 | dodoc ${mydoc} |
150 | dodoc ${mydoc} |
|
|
151 | fi |
| 115 | } |
152 | } |
| 116 | |
153 | |
| 117 | |
154 | |
| 118 | perl-module_pkg_setup() { |
155 | perl-module_pkg_setup() { |
| 119 | |
156 | |
| … | |
… | |
| 159 | VENDOR_LIB=${installvendorlib} |
196 | VENDOR_LIB=${installvendorlib} |
| 160 | |
197 | |
| 161 | eval `perl '-V:installvendorarch'` |
198 | eval `perl '-V:installvendorarch'` |
| 162 | VENDOR_ARCH=${installvendorarch} |
199 | VENDOR_ARCH=${installvendorarch} |
| 163 | |
200 | |
|
|
201 | if [ -f ${S}/Build.PL ]; then |
|
|
202 | if [ ${PN} == "module-build" ]; then |
|
|
203 | BUILDER_VER="1" # A bootstrapping if you will |
|
|
204 | else |
|
|
205 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
206 | fi |
|
|
207 | fi |
|
|
208 | |
| 164 | if [ -f /usr/bin/perl ] |
209 | if [ -f /usr/bin/perl ] |
| 165 | then |
210 | then |
| 166 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
211 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 167 | fi |
212 | fi |
| 168 | } |
213 | } |