| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 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.1.1.1 2005/11/30 09:59:31 chriswhite Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.48 2003/07/25 21:08:44 rac 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> |
|
|
| 7 | # |
6 | # |
| 8 | # The perl-module eclass is designed to allow easier installation of perl |
7 | # The perl-module eclass is designed to allow easier installation of perl |
| 9 | # modules, and their incorporation into the Gentoo Linux system. |
8 | # modules, and their incorporation into the Gentoo Linux system. |
| 10 | |
9 | |
|
|
10 | ECLASS=perl-module |
|
|
11 | INHERITED="${INHERITED} ${ECLASS}" |
| 11 | |
12 | |
| 12 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 13 | src_compile src_install src_test |
14 | src_compile src_install src_test \ |
|
|
15 | perlinfo updatepod |
| 14 | |
16 | |
| 15 | # 2005.04.28 mcummings |
17 | eval `perl '-V:version'` |
| 16 | # Mounting problems with src_test functions has forced me to make the |
18 | newdepend ">=dev-lang/perl-5.8.0-r12" |
| 17 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
19 | SRC_PREP="no" |
| 18 | # is generally necessary. I've left a block to make sure we still need to set |
|
|
| 19 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
|
|
| 20 | # as many bug reports as we have lately. |
|
|
| 21 | |
20 | |
| 22 | # 2004.05.10 rac |
|
|
| 23 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
|
|
| 24 | # actuality, this should be handled in the perl ebuild, so every perl |
|
|
| 25 | # ebuild should block versions of MakeMaker older than the one it |
|
|
| 26 | # carries. in the meantime, since we have dumped support for MakeMaker |
|
|
| 27 | # <6.11 and the associated broken DESTDIR handling, block here to save |
|
|
| 28 | # people from sandbox trouble. |
|
|
| 29 | # |
|
|
| 30 | # 2004.05.25 rac |
|
|
| 31 | # for the same reasons, make the perl dep >=5.8.2 to get everybody |
|
|
| 32 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
|
|
| 33 | # understand DESTDIR |
|
|
| 34 | # |
|
|
| 35 | # 2004.10.01 mcummings |
|
|
| 36 | # noticed a discrepancy in how we were sed fixing references to ${D} |
|
|
| 37 | # |
|
|
| 38 | # 2005.03.14 mcummings |
|
|
| 39 | # Updated eclass to include a specific function for dealing with perlocal.pods - |
|
|
| 40 | # this should avoid the conflicts we've been running into with the introduction |
|
|
| 41 | # of file collision features by giving us a single exportable function to deal |
|
|
| 42 | # with the pods. Modifications to the eclass provided by Yaakov S |
|
|
| 43 | # <yselkowitz@hotmail.com> in bug 83622 |
|
|
| 44 | # |
|
|
| 45 | # <later the same day> |
|
|
| 46 | # The long awaited (by me) fix for automagically detecting and dealing |
|
|
| 47 | # with module-build dependancies. I've chosen not to make it a default dep since |
|
|
| 48 | # this adds overhead to people that might not otherwise need it, and instead |
|
|
| 49 | # modified the eclass to detect the existence of a Build.PL and behave |
|
|
| 50 | # accordingly. This will fix issues with g-cpan builds that needs module-build |
|
|
| 51 | # support, as well as get rid of the (annoying) style=builder vars. I know of |
|
|
| 52 | # 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 |
|
|
| 54 | # 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 |
|
|
| 56 | # anymore). Enjoy! |
|
|
| 57 | # |
|
|
| 58 | # 2005.07.18 mcummings |
|
|
| 59 | # Fix for proper handling of $mydoc - thanks to stkn for noticing we were |
|
|
| 60 | # bombing out there |
|
|
| 61 | # |
|
|
| 62 | # 2005.07.19 mcummings |
|
|
| 63 | # Providing an override var for the use of Module::Build. While it is being |
|
|
| 64 | # incorporated in more and more modules, not module authors have working |
|
|
| 65 | # Build.PL's in place. The override is to allow for a fallback to the "classic" |
|
|
| 66 | # Makfile.PL - example is Class::MethodMaker, which provides a Build.PL that is |
|
|
| 67 | # severely broken. |
|
|
| 68 | |
|
|
| 69 | |
|
|
| 70 | |
|
|
| 71 | DEPEND=">=dev-lang/perl-5.8.2 !<perl-core/ExtUtils-MakeMaker-6.17" |
|
|
| 72 | RDEPEND="${DEPEND}" |
|
|
| 73 | SRC_PREP="no" |
|
|
| 74 | SRC_TEST="skip" |
|
|
| 75 | USE_BUILDER="yes" |
|
|
| 76 | |
|
|
| 77 | PERL_VERSION="" |
|
|
| 78 | SITE_ARCH="" |
|
|
| 79 | SITE_LIB="" |
21 | SITE_LIB="" |
| 80 | VENDOR_LIB="" |
|
|
| 81 | VENDOR_ARCH="" |
|
|
| 82 | ARCH_LIB="" |
22 | ARCH_LIB="" |
| 83 | POD_DIR="" |
23 | POD_DIR="" |
| 84 | BUILDER_VER="" |
|
|
| 85 | |
24 | |
| 86 | perl-module_src_prep() { |
25 | perl-module_src_prep() { |
| 87 | |
26 | |
| 88 | perlinfo |
27 | SRC_PREP="yes" |
|
|
28 | if [ "${style}" == "builder" ]; then |
|
|
29 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
30 | else |
|
|
31 | perl Makefile.PL INSTALLDIRS=vendor ${myconf} \ |
|
|
32 | PREFIX=${D}/usr |
|
|
33 | fi |
| 89 | |
34 | |
| 90 | export PERL_MM_USE_DEFAULT=1 |
|
|
| 91 | |
|
|
| 92 | |
|
|
| 93 | SRC_PREP="yes" |
|
|
| 94 | if [ -f ${S}/Build.PL ] && [ "${USE_BUILDER}" == "yes" ]; then |
|
|
| 95 | einfo "Using Module::Build" |
|
|
| 96 | if [ -z ${BUILDER_VER} ]; then |
|
|
| 97 | eerror |
|
|
| 98 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
|
|
| 99 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
|
|
| 100 | eerror "on dev-perl/module-build" |
|
|
| 101 | eerror "${BUILDER_VER}" |
|
|
| 102 | eerror |
|
|
| 103 | die |
|
|
| 104 | else |
|
|
| 105 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
| 106 | fi |
|
|
| 107 | else |
|
|
| 108 | einfo "Using ExtUtils::MakeMaker" |
|
|
| 109 | perl Makefile.PL ${myconf} \ |
|
|
| 110 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
| 111 | fi |
|
|
| 112 | } |
35 | } |
| 113 | |
36 | |
| 114 | perl-module_src_compile() { |
37 | perl-module_src_compile() { |
| 115 | |
38 | |
| 116 | perlinfo |
|
|
| 117 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
39 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 118 | if [ -z ${BUILDER_VER} ]; then |
40 | if [ "${style}" != "builder" ]; then |
| 119 | make ${mymake} || die "compilation failed" |
41 | make ${mymake} || die "compilation failed" |
| 120 | else |
|
|
| 121 | perl ${S}/Build build |
|
|
| 122 | fi |
42 | fi |
| 123 | |
43 | |
| 124 | } |
44 | } |
| 125 | |
45 | |
| 126 | perl-module_src_test() { |
46 | perl-module_src_test() { |
| 127 | if [ "${SRC_TEST}" == "do" ]; then |
47 | if [ "${style}" == "builder" ]; then |
| 128 | perlinfo |
48 | perl ${S}/Build test |
| 129 | if [ -z ${BUILDER_VER} ]; then |
|
|
| 130 | make test || die "test failed" |
|
|
| 131 | else |
49 | else |
| 132 | perl ${S}/Build test || die "test failed" |
50 | make test |
| 133 | fi |
|
|
| 134 | fi |
51 | fi |
|
|
52 | |
| 135 | } |
53 | } |
| 136 | |
54 | |
| 137 | perl-module_src_install() { |
55 | perl-module_src_install() { |
| 138 | |
56 | |
| 139 | perlinfo |
57 | perlinfo |
| 140 | |
58 | dodir ${POD_DIR} |
|
|
59 | |
| 141 | test -z ${mytargets} && mytargets="install" |
60 | test -z ${mytargets} && mytargets="install" |
| 142 | |
61 | eval `perl '-V:installsitearch'` |
| 143 | if [ -z ${BUILDER_VER} ]; then |
62 | SITE_ARCH=${installsitearch} |
| 144 | make ${myinst} ${mytargets} || die |
63 | eval `perl '-V:installarchlib'` |
|
|
64 | ARCH_LIB=${installarchlib} |
|
|
65 | |
|
|
66 | if [ "${style}" == "builder" ]; then |
|
|
67 | perl ${S}/Build install |
| 145 | else |
68 | else |
| 146 | perl ${S}/Build install |
69 | make \ |
|
|
70 | PREFIX=${D}/usr \ |
|
|
71 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
72 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
73 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
74 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
75 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
76 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
77 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
78 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
79 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
80 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
81 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
82 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
83 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
84 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
85 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
86 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
87 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
88 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
89 | ${myinst} \ |
|
|
90 | ${mytargets} || die |
| 147 | fi |
91 | fi |
| 148 | |
92 | |
| 149 | fixlocalpod |
93 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
94 | then |
|
|
95 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
96 | sed -e "s:${D}::g" \ |
|
|
97 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
98 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
99 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
100 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
101 | fi |
|
|
102 | |
|
|
103 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
104 | then |
|
|
105 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
106 | sed -e "s:${D}::g" \ |
|
|
107 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
108 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
109 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
110 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
111 | fi |
| 150 | |
112 | |
| 151 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
113 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
| 152 | STAT=`file $FILE| grep -i " text"` |
|
|
| 153 | if [ "${STAT}x" != "x" ]; then |
|
|
| 154 | sed -i -e "s:${D}:/:g" ${FILE} |
114 | sed -i -e "s:${D}:/:g" ${FILE} |
| 155 | fi |
|
|
| 156 | done |
115 | done |
| 157 | |
116 | |
| 158 | for doc in Change* MANIFEST* README* ${mydoc}; do |
117 | dodoc Change* MANIFEST* README* ${mydoc} |
| 159 | [ -s "$doc" ] && dodoc $doc |
|
|
| 160 | done |
|
|
| 161 | } |
118 | } |
| 162 | |
119 | |
| 163 | |
120 | |
| 164 | perl-module_pkg_setup() { |
121 | perl-module_pkg_setup() { |
| 165 | |
122 | |
| 166 | perlinfo |
123 | perlinfo |
| 167 | } |
124 | } |
| 168 | |
125 | |
| 169 | |
126 | |
| 170 | perl-module_pkg_preinst() { |
127 | perl-module_pkg_preinst() { |
| 171 | |
128 | |
| 172 | perlinfo |
129 | perlinfo |
| 173 | } |
130 | } |
| 174 | |
131 | |
| 175 | perl-module_pkg_postinst() { |
132 | perl-module_pkg_postinst() { |
| 176 | |
133 | |
| 177 | updatepod |
134 | updatepod |
| 178 | } |
135 | } |
| 179 | |
136 | |
| 180 | perl-module_pkg_prerm() { |
137 | perl-module_pkg_prerm() { |
| 181 | |
138 | |
| 182 | updatepod |
139 | updatepod |
| 183 | } |
140 | } |
| 184 | |
141 | |
| 185 | perl-module_pkg_postrm() { |
142 | perl-module_pkg_postrm() { |
| 186 | |
143 | |
| 187 | updatepod |
144 | updatepod |
| 188 | } |
145 | } |
| 189 | |
146 | |
| 190 | perlinfo() { |
147 | perlinfo() { |
| 191 | |
148 | |
| 192 | local version |
149 | if [ -f /usr/bin/perl ] |
| 193 | eval `perl '-V:version'` |
150 | then |
| 194 | PERL_VERSION=${version} |
151 | eval `perl '-V:installarchlib'` |
|
|
152 | eval `perl '-V:installsitearch'` |
|
|
153 | ARCH_LIB=${installarchlib} |
|
|
154 | SITE_LIB=${installsitearch} |
| 195 | |
155 | |
| 196 | local installsitearch |
156 | eval `perl '-V:version'` |
| 197 | eval `perl '-V:installsitearch'` |
157 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 198 | SITE_ARCH=${installsitearch} |
|
|
| 199 | |
|
|
| 200 | local installsitelib |
|
|
| 201 | eval `perl '-V:installsitelib'` |
|
|
| 202 | SITE_LIB=${installsitelib} |
|
|
| 203 | |
|
|
| 204 | local installarchlib |
|
|
| 205 | eval `perl '-V:installarchlib'` |
|
|
| 206 | ARCH_LIB=${installarchlib} |
|
|
| 207 | |
|
|
| 208 | local installvendorlib |
|
|
| 209 | eval `perl '-V:installvendorlib'` |
|
|
| 210 | VENDOR_LIB=${installvendorlib} |
|
|
| 211 | |
|
|
| 212 | local installvendorarch |
|
|
| 213 | eval `perl '-V:installvendorarch'` |
|
|
| 214 | VENDOR_ARCH=${installvendorarch} |
|
|
| 215 | |
|
|
| 216 | if [ "${USE_BUILDER}" == "yes" ]; then |
|
|
| 217 | if [ -f ${S}/Build.PL ]; then |
|
|
| 218 | if [ ${PN} == "module-build" ]; then |
|
|
| 219 | BUILDER_VER="1" # A bootstrapping if you will |
|
|
| 220 | else |
|
|
| 221 | BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
|
|
| 222 | fi |
|
|
| 223 | fi |
|
|
| 224 | fi |
158 | fi |
| 225 | |
159 | |
| 226 | if [ -f /usr/bin/perl ] |
|
|
| 227 | then |
|
|
| 228 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
| 229 | fi |
|
|
| 230 | } |
|
|
| 231 | |
|
|
| 232 | fixlocalpod() { |
|
|
| 233 | perlinfo |
|
|
| 234 | dodir ${POD_DIR} |
|
|
| 235 | |
|
|
| 236 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
| 237 | then |
|
|
| 238 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 239 | sed -e "s:${D}::g" \ |
|
|
| 240 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 241 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 242 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 243 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
| 244 | fi |
|
|
| 245 | |
|
|
| 246 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
| 247 | then |
|
|
| 248 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 249 | sed -e "s:${D}::g" \ |
|
|
| 250 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 251 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 252 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 253 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
| 254 | fi |
|
|
| 255 | |
|
|
| 256 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
|
|
| 257 | then |
|
|
| 258 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 259 | sed -e "s:${D}::g" \ |
|
|
| 260 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 261 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 262 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 263 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
|
|
| 264 | fi |
|
|
| 265 | } |
160 | } |
| 266 | |
161 | |
| 267 | updatepod() { |
162 | updatepod() { |
| 268 | perlinfo |
163 | perlinfo |
| 269 | |
164 | |
| … | |
… | |
| 275 | done |
170 | done |
| 276 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
171 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 277 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
172 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 278 | rm -f ${FILE} |
173 | rm -f ${FILE} |
| 279 | done |
174 | done |
| 280 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
|
|
| 281 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
|
|
| 282 | rm -f ${FILE} |
|
|
| 283 | done |
|
|
| 284 | fi |
175 | fi |
| 285 | } |
176 | } |