| 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.70 2005/05/17 14:36:13 mcummings Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.114 2009/03/11 06:36:45 tove 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 | |
| 7 | # |
7 | # @ECLASS: perl-module.eclass |
|
|
8 | # @MAINTAINER: |
|
|
9 | # perl@gentoo.org |
|
|
10 | # @BLURB: eclass for perl modules |
|
|
11 | # @DESCRIPTION: |
| 8 | # The perl-module eclass is designed to allow easier installation of perl |
12 | # The perl-module eclass is designed to allow easier installation of perl |
| 9 | # modules, and their incorporation into the Gentoo Linux system. |
13 | # modules, and their incorporation into the Gentoo Linux system. |
| 10 | |
14 | |
| 11 | ECLASS=perl-module |
15 | inherit eutils base |
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 13 | |
16 | |
|
|
17 | case "${EAPI:-0}" in |
|
|
18 | 0|1) |
| 14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
19 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test src_unpack |
| 15 | src_compile src_install src_test \ |
20 | ;; |
| 16 | perlinfo updatepod |
21 | 2) |
|
|
22 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install |
| 17 | |
23 | |
| 18 | # 2005.04.28 mcummings |
24 | case "${GENTOO_DEPEND_ON_PERL:-yes}" in |
| 19 | # Mounting problems with src_test functions has forced me to make the |
25 | yes) |
| 20 | # compilation of perl modules honor the FEATURES maketest flag rather than what |
26 | DEPEND="dev-lang/perl[-build]" |
| 21 | # is generally necessary. I've left a block to make sure we still need to set |
27 | RDEPEND="${DEPEND}" |
| 22 | # the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
28 | ;; |
| 23 | # as many bug reports as we have lately. |
29 | esac |
|
|
30 | ;; |
|
|
31 | esac |
| 24 | |
32 | |
| 25 | # 2004.05.10 rac |
33 | DESCRIPTION="Based on the $ECLASS eclass" |
| 26 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
|
|
| 27 | # actuality, this should be handled in the perl ebuild, so every perl |
|
|
| 28 | # ebuild should block versions of MakeMaker older than the one it |
|
|
| 29 | # carries. in the meantime, since we have dumped support for MakeMaker |
|
|
| 30 | # <6.11 and the associated broken DESTDIR handling, block here to save |
|
|
| 31 | # people from sandbox trouble. |
|
|
| 32 | # |
|
|
| 33 | # 2004.05.25 rac |
|
|
| 34 | # for the same reasons, make the perl dep >=5.8.2 to get everybody |
|
|
| 35 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
|
|
| 36 | # understand DESTDIR |
|
|
| 37 | # |
|
|
| 38 | # 2004.10.01 mcummings |
|
|
| 39 | # noticed a discrepancy in how we were sed fixing references to ${D} |
|
|
| 40 | # |
|
|
| 41 | # 2005.03.14 mcummings |
|
|
| 42 | # 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 |
|
|
| 44 | # 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 |
|
|
| 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 | |
34 | |
|
|
35 | LICENSE="${LICENSE:-|| ( Artistic GPL-2 )}" |
| 61 | |
36 | |
|
|
37 | [[ -z "${SRC_URI}" && -z "${MODULE_A}" ]] && MODULE_A="${MY_P:-${P}}.tar.gz" |
|
|
38 | [[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \ |
|
|
39 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION}/${MODULE_A}" |
|
|
40 | [[ -z "${HOMEPAGE}" ]] && \ |
|
|
41 | HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}" |
| 62 | |
42 | |
| 63 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
|
|
| 64 | SRC_PREP="no" |
43 | SRC_PREP="no" |
| 65 | SRC_TEST="skip" |
44 | SRC_TEST="skip" |
|
|
45 | PREFER_BUILDPL="yes" |
| 66 | |
46 | |
| 67 | PERL_VERSION="" |
47 | PERL_VERSION="" |
| 68 | SITE_ARCH="" |
48 | SITE_ARCH="" |
| 69 | SITE_LIB="" |
49 | SITE_LIB="" |
|
|
50 | ARCH_LIB="" |
|
|
51 | VENDOR_ARCH="" |
| 70 | VENDOR_LIB="" |
52 | VENDOR_LIB="" |
| 71 | VENDOR_ARCH="" |
53 | |
| 72 | ARCH_LIB="" |
54 | pm_echovar="" |
| 73 | POD_DIR="" |
55 | perlinfo_done=false |
| 74 | BUILDER_VER="" |
56 | |
|
|
57 | perl-module_src_unpack() { |
|
|
58 | base_src_unpack unpack |
|
|
59 | has "${EAPI:-0}" 0 1 && perl-module_src_prepare |
|
|
60 | } |
|
|
61 | |
|
|
62 | perl-module_src_prepare() { |
|
|
63 | if [[ -n ${PATCHES} ]] ; then |
|
|
64 | base_src_unpack autopatch |
|
|
65 | fi |
|
|
66 | esvn_clean |
|
|
67 | } |
|
|
68 | |
|
|
69 | perl-module_src_configure() { |
|
|
70 | perl-module_src_prep |
|
|
71 | } |
| 75 | |
72 | |
| 76 | perl-module_src_prep() { |
73 | perl-module_src_prep() { |
|
|
74 | [[ "${SRC_PREP}" = "yes" ]] && return 0 |
|
|
75 | SRC_PREP="yes" |
| 77 | |
76 | |
| 78 | perlinfo |
77 | ${perlinfo_done} || perlinfo |
| 79 | |
78 | |
| 80 | export PERL_MM_USE_DEFAULT=1 |
79 | export PERL_MM_USE_DEFAULT=1 |
|
|
80 | # Disable ExtUtils::AutoInstall from prompting |
|
|
81 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 81 | |
82 | |
|
|
83 | if [[ "${PREFER_BUILDPL}" == "yes" && -f Build.PL ]] ; then |
|
|
84 | einfo "Using Module::Build" |
|
|
85 | perl Build.PL \ |
|
|
86 | --installdirs=vendor \ |
|
|
87 | --libdoc= \ |
|
|
88 | --destdir="${D}" \ |
|
|
89 | --create_packlist=0 \ |
|
|
90 | --extra_linker_flags="${LDFLAGS}" \ |
|
|
91 | ${myconf} \ |
|
|
92 | <<< ${pm_echovar} \ |
|
|
93 | || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
94 | elif [[ -f Makefile.PL ]] ; then |
|
|
95 | einfo "Using ExtUtils::MakeMaker" |
|
|
96 | perl Makefile.PL \ |
|
|
97 | PREFIX=/usr \ |
|
|
98 | INSTALLDIRS=vendor \ |
|
|
99 | INSTALLMAN3DIR='none' \ |
|
|
100 | DESTDIR="${D}" \ |
|
|
101 | ${myconf} \ |
|
|
102 | <<< ${pm_echovar} \ |
|
|
103 | || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
104 | fi |
|
|
105 | if [[ ! -f Build.PL && ! -f Makefile.PL ]] ; then |
|
|
106 | einfo "No Make or Build file detected..." |
|
|
107 | return |
|
|
108 | fi |
|
|
109 | } |
| 82 | |
110 | |
| 83 | SRC_PREP="yes" |
111 | perl-module_src_compile() { |
|
|
112 | ${perlinfo_done} || perlinfo |
|
|
113 | |
|
|
114 | has "${EAPI:-0}" 0 1 && perl-module_src_prep |
|
|
115 | |
| 84 | if [ -f ${S}/Build.PL ]; then |
116 | if [[ -f Build ]] ; then |
| 85 | if [ -z ${BUILDER_VER} ]; then |
117 | ./Build build \ |
| 86 | eerror |
118 | || die "compilation failed" |
| 87 | eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
119 | elif [[ -f Makefile ]] ; then |
| 88 | eerror "perl@gentoo.org - ${P} was added without a dependancy" |
120 | emake \ |
| 89 | eerror "on dev-perl/module-build" |
121 | OTHERLDFLAGS="${LDFLAGS}" \ |
| 90 | eerror "${BUILDER_VER}" |
122 | ${mymake} \ |
| 91 | eerror |
123 | || die "compilation failed" |
| 92 | die |
124 | # OPTIMIZE="${CFLAGS}" \ |
| 93 | else |
125 | fi |
| 94 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
126 | } |
|
|
127 | |
|
|
128 | perl-module_src_test() { |
|
|
129 | if [[ "${SRC_TEST}" == "do" ]] ; then |
|
|
130 | ${perlinfo_done} || perlinfo |
|
|
131 | if [[ -f Build ]] ; then |
|
|
132 | ./Build test || die "test failed" |
|
|
133 | elif [[ -f Makefile ]] ; then |
|
|
134 | emake test || die "test failed" |
| 95 | fi |
135 | fi |
| 96 | else |
|
|
| 97 | perl Makefile.PL ${myconf} \ |
|
|
| 98 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
| 99 | fi |
|
|
| 100 | } |
|
|
| 101 | |
|
|
| 102 | perl-module_src_compile() { |
|
|
| 103 | |
|
|
| 104 | perlinfo |
|
|
| 105 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
| 106 | if [ -z ${BUILDER_VER} ]; then |
|
|
| 107 | make ${mymake} || die "compilation failed" |
|
|
| 108 | else |
|
|
| 109 | perl ${S}/Build build |
|
|
| 110 | fi |
|
|
| 111 | |
|
|
| 112 | } |
|
|
| 113 | |
|
|
| 114 | perl-module_src_test() { |
|
|
| 115 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
| 116 | perlinfo |
|
|
| 117 | if [ -z ${BUILDER_VER} ]; then |
|
|
| 118 | make test || die "test failed" |
|
|
| 119 | else |
|
|
| 120 | perl ${S}/Build test || die "test failed" |
|
|
| 121 | fi |
|
|
| 122 | fi |
136 | fi |
| 123 | } |
137 | } |
| 124 | |
138 | |
| 125 | perl-module_src_install() { |
139 | perl-module_src_install() { |
| 126 | |
140 | local f |
| 127 | perlinfo |
141 | ${perlinfo_done} || perlinfo |
| 128 | |
142 | |
| 129 | test -z ${mytargets} && mytargets="install" |
143 | if [[ -z ${mytargets} ]] ; then |
| 130 | |
144 | case "${CATEGORY}" in |
| 131 | if [ -z ${BUILDER_VER} ]; then |
145 | dev-perl|perl-core) mytargets="pure_install" ;; |
|
|
146 | *) mytargets="install" ;; |
|
|
147 | esac |
|
|
148 | fi |
|
|
149 | |
|
|
150 | if [[ -f Build ]] ; then |
|
|
151 | ./Build ${mytargets} \ |
|
|
152 | || die "./Build ${mytargets} failed" |
|
|
153 | elif [[ -f Makefile ]] ; then |
| 132 | make ${myinst} ${mytargets} || die |
154 | emake ${myinst} ${mytargets} \ |
| 133 | else |
155 | || die "emake ${myinst} ${mytargets} failed" |
| 134 | perl ${S}/Build install |
|
|
| 135 | fi |
156 | fi |
|
|
157 | |
|
|
158 | # einfo "Cleaning out stray man files" |
|
|
159 | find "${D}" -type f -name "*.3pm" -delete |
|
|
160 | find "${D}"/usr/share/man -depth -type d -empty -delete 2>/dev/null |
| 136 | |
161 | |
| 137 | fixlocalpod |
162 | fixlocalpod |
| 138 | |
163 | |
| 139 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
164 | for f in Change* CHANGES README* ${mydoc}; do |
| 140 | STAT=`file $FILE| grep -i " text"` |
165 | [[ -s "${f}" ]] && dodoc ${f} |
| 141 | if [ "${STAT}x" != "x" ]; then |
166 | done |
|
|
167 | |
|
|
168 | find "${D}/${VENDOR_LIB}" -type f -a \( -name .packlist \ |
|
|
169 | -o \( -name '*.bs' -a -empty \) \) -delete |
|
|
170 | find "${D}/${VENDOR_LIB}" -depth -mindepth 1 -type d -empty -delete |
|
|
171 | |
|
|
172 | find "${D}" -type f -not -name '*.so' -print0 | while read -rd '' f ; do |
|
|
173 | if file "${f}" | grep -q -i " text" ; then |
|
|
174 | if grep -q "${D}" "${f}" ; then ewarn "QA: File contains a temporary path ${f}" ;fi |
| 142 | sed -i -e "s:${D}:/:g" ${FILE} |
175 | sed -i -e "s:${D}:/:g" "${f}" |
| 143 | fi |
176 | fi |
| 144 | done |
177 | done |
|
|
178 | } |
| 145 | |
179 | |
| 146 | for doc in Change* MANIFEST* README*; do |
180 | perl-module_pkg_setup() { |
| 147 | [ -s "$doc" ] && dodoc $doc |
181 | ${perlinfo_done} || perlinfo |
|
|
182 | } |
|
|
183 | |
|
|
184 | perl-module_pkg_preinst() { |
|
|
185 | ${perlinfo_done} || perlinfo |
|
|
186 | } |
|
|
187 | |
|
|
188 | perl-module_pkg_postinst() { : ; } |
|
|
189 | # einfo "Man pages are not installed for most modules now." |
|
|
190 | # einfo "Please use perldoc instead." |
|
|
191 | #} |
|
|
192 | |
|
|
193 | perl-module_pkg_prerm() { : ; } |
|
|
194 | |
|
|
195 | perl-module_pkg_postrm() { : ; } |
|
|
196 | |
|
|
197 | perlinfo() { |
|
|
198 | perlinfo_done=true |
|
|
199 | |
|
|
200 | local f version install{site{arch,lib},archlib,vendor{arch,lib}} |
|
|
201 | for f in version install{site{arch,lib},archlib,vendor{arch,lib}} ; do |
|
|
202 | eval "$(perl -V:${f} )" |
| 148 | done |
203 | done |
| 149 | if [ -s "${mydoc}" ]; then |
|
|
| 150 | dodoc ${mydoc} |
|
|
| 151 | fi |
|
|
| 152 | } |
|
|
| 153 | |
|
|
| 154 | |
|
|
| 155 | perl-module_pkg_setup() { |
|
|
| 156 | |
|
|
| 157 | perlinfo |
|
|
| 158 | } |
|
|
| 159 | |
|
|
| 160 | |
|
|
| 161 | perl-module_pkg_preinst() { |
|
|
| 162 | |
|
|
| 163 | perlinfo |
|
|
| 164 | } |
|
|
| 165 | |
|
|
| 166 | perl-module_pkg_postinst() { |
|
|
| 167 | |
|
|
| 168 | updatepod |
|
|
| 169 | } |
|
|
| 170 | |
|
|
| 171 | perl-module_pkg_prerm() { |
|
|
| 172 | |
|
|
| 173 | updatepod |
|
|
| 174 | } |
|
|
| 175 | |
|
|
| 176 | perl-module_pkg_postrm() { |
|
|
| 177 | |
|
|
| 178 | updatepod |
|
|
| 179 | } |
|
|
| 180 | |
|
|
| 181 | perlinfo() { |
|
|
| 182 | |
|
|
| 183 | eval `perl '-V:version'` |
|
|
| 184 | PERL_VERSION=${version} |
204 | PERL_VERSION=${version} |
| 185 | |
|
|
| 186 | eval `perl '-V:installsitearch'` |
|
|
| 187 | SITE_ARCH=${installsitearch} |
205 | SITE_ARCH=${installsitearch} |
| 188 | |
|
|
| 189 | eval `perl '-V:installsitearch'` |
|
|
| 190 | SITE_LIB=${installsitearch} |
206 | SITE_LIB=${installsitelib} |
| 191 | |
|
|
| 192 | eval `perl '-V:installarchlib'` |
|
|
| 193 | ARCH_LIB=${installarchlib} |
207 | ARCH_LIB=${installarchlib} |
| 194 | |
|
|
| 195 | eval `perl '-V:installvendorlib'` |
|
|
| 196 | VENDOR_LIB=${installvendorlib} |
208 | VENDOR_LIB=${installvendorlib} |
| 197 | |
|
|
| 198 | eval `perl '-V:installvendorarch'` |
|
|
| 199 | VENDOR_ARCH=${installvendorarch} |
209 | VENDOR_ARCH=${installvendorarch} |
| 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 | |
|
|
| 209 | if [ -f /usr/bin/perl ] |
|
|
| 210 | then |
|
|
| 211 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
| 212 | fi |
|
|
| 213 | } |
210 | } |
| 214 | |
211 | |
| 215 | fixlocalpod() { |
212 | fixlocalpod() { |
| 216 | perlinfo |
213 | find "${D}" -type f -name perllocal.pod -delete |
| 217 | dodir ${POD_DIR} |
214 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
| 218 | |
|
|
| 219 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
| 220 | then |
|
|
| 221 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 222 | sed -e "s:${D}::g" \ |
|
|
| 223 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 224 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 225 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 226 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
| 227 | fi |
|
|
| 228 | |
|
|
| 229 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
| 230 | then |
|
|
| 231 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 232 | sed -e "s:${D}::g" \ |
|
|
| 233 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 234 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 235 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 236 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
| 237 | fi |
|
|
| 238 | |
|
|
| 239 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
|
|
| 240 | then |
|
|
| 241 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 242 | sed -e "s:${D}::g" \ |
|
|
| 243 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 244 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 245 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
|
|
| 246 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
|
|
| 247 | fi |
|
|
| 248 | } |
215 | } |
| 249 | |
|
|
| 250 | updatepod() { |
|
|
| 251 | perlinfo |
|
|
| 252 | |
|
|
| 253 | if [ -d "${POD_DIR}" ] |
|
|
| 254 | then |
|
|
| 255 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
| 256 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
| 257 | rm -f ${FILE} |
|
|
| 258 | done |
|
|
| 259 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
| 260 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
| 261 | rm -f ${FILE} |
|
|
| 262 | done |
|
|
| 263 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
|
|
| 264 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
|
|
| 265 | rm -f ${FILE} |
|
|
| 266 | done |
|
|
| 267 | fi |
|
|
| 268 | } |
|
|