1 | # Copyright 2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2009 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.117 2009/09/27 07:00:32 tove Exp $ |
|
|
4 | # |
3 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.29 2002/10/20 06:45:12 seemant Exp $ |
6 | |
|
|
7 | # @ECLASS: perl-module.eclass |
|
|
8 | # @MAINTAINER: |
|
|
9 | # perl@gentoo.org |
|
|
10 | # @BLURB: eclass for perl modules |
|
|
11 | # @DESCRIPTION: |
5 | # 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 |
6 | # modules, and their incorporation into the Gentoo Linux system. |
13 | # modules, and their incorporation into the Gentoo Linux system. |
7 | |
14 | |
8 | #first inherit the pkg_postinst() and pkg_postrm() functions |
15 | inherit eutils base |
9 | inherit perl-post |
16 | [[ ${CATEGORY} == "perl-core" ]] && inherit alternatives |
10 | |
17 | |
11 | ECLASS=perl-module |
18 | PERL_EXPF="src_unpack src_compile src_test src_install" |
12 | INHERITED="$INHERITED $ECLASS" |
|
|
13 | |
19 | |
14 | EXPORT_FUNCTIONS src_compile src_install src_test |
20 | case "${EAPI:-0}" in |
|
|
21 | 0|1) |
|
|
22 | PERL_EXPF="${PERL_EXPF} pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm" |
|
|
23 | ;; |
|
|
24 | 2) |
|
|
25 | PERL_EXPF="${PERL_EXPF} src_prepare src_configure" |
|
|
26 | [[ ${CATEGORY} == "perl-core" ]] && \ |
|
|
27 | PERL_EXPF="${PERL_EXPF} pkg_postinst pkg_postrm" |
15 | |
28 | |
16 | eval `perl '-V:version'` |
29 | case "${GENTOO_DEPEND_ON_PERL:-yes}" in |
|
|
30 | yes) |
|
|
31 | DEPEND="dev-lang/perl[-build]" |
17 | DEPEND="${DEPEND} |
32 | RDEPEND="${DEPEND}" |
18 | sys-devel/perl" |
33 | ;; |
|
|
34 | esac |
|
|
35 | ;; |
|
|
36 | esac |
|
|
37 | |
|
|
38 | EXPORT_FUNCTIONS ${PERL_EXPF} |
|
|
39 | |
|
|
40 | DESCRIPTION="Based on the $ECLASS eclass" |
|
|
41 | |
|
|
42 | LICENSE="${LICENSE:-|| ( Artistic GPL-2 )}" |
|
|
43 | |
|
|
44 | [[ -z "${SRC_URI}" && -z "${MODULE_A}" ]] && MODULE_A="${MY_P:-${P}}.tar.gz" |
|
|
45 | [[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \ |
|
|
46 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION}/${MODULE_A}" |
|
|
47 | [[ -z "${HOMEPAGE}" ]] && \ |
|
|
48 | HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}" |
|
|
49 | |
19 | SRC_PREP="no" |
50 | SRC_PREP="no" |
|
|
51 | SRC_TEST="skip" |
|
|
52 | PREFER_BUILDPL="yes" |
|
|
53 | |
|
|
54 | PERL_VERSION="" |
|
|
55 | SITE_ARCH="" |
|
|
56 | SITE_LIB="" |
|
|
57 | ARCH_LIB="" |
|
|
58 | VENDOR_ARCH="" |
|
|
59 | VENDOR_LIB="" |
|
|
60 | |
|
|
61 | pm_echovar="" |
|
|
62 | perlinfo_done=false |
|
|
63 | |
|
|
64 | perl-module_src_unpack() { |
|
|
65 | base_src_unpack unpack |
|
|
66 | has src_prepare ${PERL_EXPF} || perl-module_src_prepare |
|
|
67 | } |
|
|
68 | |
|
|
69 | perl-module_src_prepare() { |
|
|
70 | if [[ -n ${PATCHES} ]] ; then |
|
|
71 | base_src_unpack autopatch |
|
|
72 | fi |
|
|
73 | esvn_clean |
|
|
74 | } |
|
|
75 | |
|
|
76 | perl-module_src_configure() { |
|
|
77 | perl-module_src_prep |
|
|
78 | } |
20 | |
79 | |
21 | perl-module_src_prep() { |
80 | perl-module_src_prep() { |
22 | |
81 | [[ ${SRC_PREP} = yes ]] && return 0 |
23 | SRC_PREP="yes" |
82 | SRC_PREP="yes" |
|
|
83 | |
|
|
84 | ${perlinfo_done} || perlinfo |
|
|
85 | |
|
|
86 | export PERL_MM_USE_DEFAULT=1 |
|
|
87 | # Disable ExtUtils::AutoInstall from prompting |
|
|
88 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
|
|
89 | |
|
|
90 | if [[ ${PREFER_BUILDPL} == yes && -f Build.PL ]] ; then |
|
|
91 | einfo "Using Module::Build" |
|
|
92 | perl Build.PL \ |
|
|
93 | --installdirs=vendor \ |
|
|
94 | --libdoc= \ |
|
|
95 | --destdir="${D}" \ |
|
|
96 | --create_packlist=0 \ |
|
|
97 | ${myconf} \ |
|
|
98 | <<< "${pm_echovar}" \ |
|
|
99 | || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
100 | elif [[ -f Makefile.PL ]] ; then |
|
|
101 | einfo "Using ExtUtils::MakeMaker" |
24 | perl Makefile.PL ${myconf} \ |
102 | perl Makefile.PL \ |
25 | PREFIX=${D}/usr |
103 | PREFIX=/usr \ |
|
|
104 | INSTALLDIRS=vendor \ |
|
|
105 | INSTALLMAN3DIR='none' \ |
|
|
106 | DESTDIR="${D}" \ |
|
|
107 | ${myconf} \ |
|
|
108 | <<< "${pm_echovar}" \ |
|
|
109 | || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
110 | fi |
|
|
111 | if [[ ! -f Build.PL && ! -f Makefile.PL ]] ; then |
|
|
112 | einfo "No Make or Build file detected..." |
|
|
113 | return |
|
|
114 | fi |
26 | } |
115 | } |
27 | |
116 | |
28 | perl-module_src_compile() { |
117 | perl-module_src_compile() { |
|
|
118 | ${perlinfo_done} || perlinfo |
29 | |
119 | |
30 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
120 | has src_configure ${PERL_EXPF} || perl-module_src_prep |
|
|
121 | |
|
|
122 | if [[ -f Build ]] ; then |
|
|
123 | ./Build build \ |
31 | make ${mymake} || die "compilation failed" |
124 | || die "compilation failed" |
|
|
125 | elif [[ -f Makefile ]] ; then |
|
|
126 | emake \ |
|
|
127 | OTHERLDFLAGS="${LDFLAGS}" \ |
|
|
128 | ${mymake} \ |
|
|
129 | || die "compilation failed" |
|
|
130 | # OPTIMIZE="${CFLAGS}" \ |
|
|
131 | fi |
32 | } |
132 | } |
|
|
133 | |
|
|
134 | # For testers: |
|
|
135 | # This code attempts to work out your threadingness from MAKEOPTS |
|
|
136 | # and apply them to Test::Harness. |
|
|
137 | # |
|
|
138 | # If you want more verbose testing, set TEST_VERBOSE=1 |
|
|
139 | # in your bashrc | /etc/make.conf | ENV |
|
|
140 | # |
|
|
141 | # For ebuild writers: |
|
|
142 | # If you wish to enable default tests w/ 'make test' , |
|
|
143 | # |
|
|
144 | # SRC_TEST="do" |
|
|
145 | # |
|
|
146 | # If you wish to have threads run in parallel ( using the users makeopts ) |
|
|
147 | # all of the following have been tested to work. |
|
|
148 | # |
|
|
149 | # SRC_TEST="do parallel" |
|
|
150 | # SRC_TEST="parallel" |
|
|
151 | # SRC_TEST="parallel do" |
|
|
152 | # SRC_TEST=parallel |
|
|
153 | # |
33 | |
154 | |
34 | perl-module_src_test() { |
155 | perl-module_src_test() { |
35 | make test |
156 | if has 'do' ${SRC_TEST} || has 'parallel' ${SRC_TEST} ; then |
|
|
157 | if has "${TEST_VERBOSE:-0}" 0 && has 'parallel' ${SRC_TEST} ; then |
|
|
158 | export HARNESS_OPTIONS=j$(echo -j1 ${MAKEOPTS} | sed -r "s/.*(-j\s*|--jobs=)([0-9]+).*/\2/" ) |
|
|
159 | einfo "Test::Harness Jobs=${HARNESS_OPTIONS}" |
|
|
160 | fi |
|
|
161 | ${perlinfo_done} || perlinfo |
|
|
162 | if [[ -f Build ]] ; then |
|
|
163 | ./Build test verbose=${TEST_VERBOSE:-0} || die "test failed" |
|
|
164 | elif [[ -f Makefile ]] ; then |
|
|
165 | emake test TEST_VERBOSE=${TEST_VERBOSE:-0} || die "test failed" |
|
|
166 | fi |
|
|
167 | fi |
36 | } |
168 | } |
37 | |
169 | |
38 | perl-module_src_install() { |
170 | perl-module_src_install() { |
39 | |
171 | local f |
40 | perl-post_perlinfo |
172 | ${perlinfo_done} || perlinfo |
41 | dodir ${POD_DIR} |
|
|
42 | |
|
|
43 | test -z ${mytargets} && mytargets="install" |
|
|
44 | |
|
|
45 | make \ |
|
|
46 | PREFIX=${D}/usr \ |
|
|
47 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
48 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
49 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
50 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
51 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
52 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
53 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
54 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
55 | ${myinst} \ |
|
|
56 | ${mytargets} || die |
|
|
57 | |
173 | |
|
|
174 | if [[ -z ${mytargets} ]] ; then |
|
|
175 | case "${CATEGORY}" in |
|
|
176 | dev-perl|perl-core) mytargets="pure_install" ;; |
|
|
177 | *) mytargets="install" ;; |
|
|
178 | esac |
|
|
179 | fi |
58 | |
180 | |
59 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
181 | if [[ -f Build ]] ; then |
60 | then |
182 | ./Build ${mytargets} \ |
61 | touch ${D}/${POD_DIR}/${P}.pod |
183 | || die "./Build ${mytargets} failed" |
|
|
184 | elif [[ -f Makefile ]] ; then |
|
|
185 | emake ${myinst} ${mytargets} \ |
|
|
186 | || die "emake ${myinst} ${mytargets} failed" |
|
|
187 | fi |
|
|
188 | |
|
|
189 | if [[ -d "${D}"/usr/share/man ]] ; then |
|
|
190 | # einfo "Cleaning out stray man files" |
|
|
191 | find "${D}"/usr/share/man -type f -name "*.3pm" -delete |
|
|
192 | find "${D}"/usr/share/man -depth -type d -empty -delete |
|
|
193 | fi |
|
|
194 | |
|
|
195 | fixlocalpod |
|
|
196 | |
|
|
197 | for f in Change* CHANGES README* TODO ${mydoc}; do |
|
|
198 | [[ -s ${f} ]] && dodoc ${f} |
|
|
199 | done |
|
|
200 | |
|
|
201 | if [[ -d ${D}/${VENDOR_LIB} ]] ; then |
|
|
202 | find "${D}/${VENDOR_LIB}" -type f -a \( -name .packlist \ |
|
|
203 | -o \( -name '*.bs' -a -empty \) \) -delete |
|
|
204 | find "${D}/${VENDOR_LIB}" -depth -mindepth 1 -type d -empty -delete |
|
|
205 | fi |
|
|
206 | |
|
|
207 | find "${D}" -type f -not -name '*.so' -print0 | while read -rd '' f ; do |
|
|
208 | if file "${f}" | grep -q -i " text" ; then |
|
|
209 | grep -q "${D}" "${f}" && ewarn "QA: File contains a temporary path ${f}" |
62 | sed -e "s:${D}::g" \ |
210 | sed -i -e "s:${D}:/:g" "${f}" |
63 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
64 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
65 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
66 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
67 | fi |
211 | fi |
68 | |
212 | done |
69 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
213 | |
70 | then |
214 | linkduallifescripts |
71 | touch ${D}/${POD_DIR}/${P}.pod |
215 | } |
72 | sed -e "s:${D}::g" \ |
216 | |
73 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
217 | perl-module_pkg_setup() { |
74 | touch ${D}/${POD_DIR}/${P}.pod.site |
218 | ${perlinfo_done} || perlinfo |
75 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
219 | } |
76 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
220 | |
|
|
221 | perl-module_pkg_preinst() { |
|
|
222 | ${perlinfo_done} || perlinfo |
|
|
223 | } |
|
|
224 | |
|
|
225 | perl-module_pkg_postinst() { |
|
|
226 | linkduallifescripts |
|
|
227 | } |
|
|
228 | |
|
|
229 | perl-module_pkg_prerm() { : ; } |
|
|
230 | |
|
|
231 | perl-module_pkg_postrm() { |
|
|
232 | linkduallifescripts |
|
|
233 | } |
|
|
234 | |
|
|
235 | perlinfo() { |
|
|
236 | perlinfo_done=true |
|
|
237 | |
|
|
238 | local f version install{{site,vendor}{arch,lib},archlib} |
|
|
239 | for f in version install{{site,vendor}{arch,lib},archlib} ; do |
|
|
240 | eval "$(perl -V:${f} )" |
|
|
241 | done |
|
|
242 | PERL_VERSION=${version} |
|
|
243 | SITE_ARCH=${installsitearch} |
|
|
244 | SITE_LIB=${installsitelib} |
|
|
245 | ARCH_LIB=${installarchlib} |
|
|
246 | VENDOR_LIB=${installvendorlib} |
|
|
247 | VENDOR_ARCH=${installvendorarch} |
|
|
248 | } |
|
|
249 | |
|
|
250 | fixlocalpod() { |
|
|
251 | find "${D}" -type f -name perllocal.pod -delete |
|
|
252 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
|
|
253 | } |
|
|
254 | |
|
|
255 | linkduallifescripts() { |
|
|
256 | if [[ ${CATEGORY} != perl-core ]] || ! has_version ">=dev-lang/perl-5.10.1" ; then |
|
|
257 | return 0 |
|
|
258 | fi |
|
|
259 | |
|
|
260 | local i ff |
|
|
261 | if has "${EBUILD_PHASE:-none}" "postinst" "postrm" ; then |
|
|
262 | for i in "${DUALLIFESCRIPTS[@]}" ; do |
|
|
263 | alternatives_auto_makesym "/usr/bin/${i}" "/usr/bin/${i}-[0-9]*" |
|
|
264 | ff=`echo "${ROOT}"/usr/share/man/man1/${i}-${PV}-${P}.1*` |
|
|
265 | ff=${ff##*.1} |
|
|
266 | alternatives_auto_makesym "/usr/share/man/man1/${i}.1${ff}" "/usr/share/man/man1/${i}-[0-9]*" |
|
|
267 | done |
|
|
268 | else |
|
|
269 | pushd "${D}" > /dev/null |
|
|
270 | for i in $(find usr/bin -maxdepth 1 -type f 2>/dev/null) ; do |
|
|
271 | mv ${i}{,-${PV}-${P}} || die |
|
|
272 | DUALLIFESCRIPTS[${#DUALLIFESCRIPTS[*]}]=${i##*/} |
|
|
273 | if [[ -f usr/share/man/man1/${i##*/}.1 ]] ; then |
|
|
274 | mv usr/share/man/man1/${i##*/}{.1,-${PV}-${P}.1} || die |
77 | fi |
275 | fi |
78 | |
276 | done |
79 | dodoc Change* MANIFEST* README* ${mydoc} |
277 | popd > /dev/null |
|
|
278 | fi |
80 | } |
279 | } |