| 1 | # Copyright 1999-2003 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.53 2003/10/19 11:50:36 lanius Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.123 2010/04/17 19:56:27 tove Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 6 | # |
6 | |
|
|
7 | # @ECLASS: perl-module.eclass |
|
|
8 | # @MAINTAINER: |
|
|
9 | # perl@gentoo.org |
|
|
10 | # @BLURB: eclass for perl modules |
|
|
11 | # @DESCRIPTION: |
| 7 | # 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 |
| 8 | # modules, and their incorporation into the Gentoo Linux system. |
13 | # modules, and their incorporation into the Gentoo Linux system. |
| 9 | |
14 | |
| 10 | ECLASS=perl-module |
15 | inherit perl-helper eutils base |
| 11 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 12 | |
16 | |
|
|
17 | PERL_EXPF="src_unpack src_compile src_test src_install" |
|
|
18 | |
|
|
19 | case "${EAPI:-0}" in |
|
|
20 | 0|1) |
| 13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
21 | PERL_EXPF="${PERL_EXPF} pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm" |
| 14 | src_compile src_install src_test \ |
22 | ;; |
| 15 | perlinfo updatepod |
23 | 2|3) |
|
|
24 | PERL_EXPF="${PERL_EXPF} src_prepare src_configure" |
|
|
25 | [[ ${CATEGORY} == "perl-core" ]] && \ |
|
|
26 | PERL_EXPF="${PERL_EXPF} pkg_postinst pkg_postrm" |
| 16 | |
27 | |
| 17 | eval `perl '-V:version'` |
28 | case "${GENTOO_DEPEND_ON_PERL:-yes}" in |
| 18 | newdepend ">=dev-lang/perl-5.8.0-r12" |
29 | yes) |
|
|
30 | DEPEND="dev-lang/perl[-build]" |
|
|
31 | RDEPEND="${DEPEND}" |
|
|
32 | ;; |
|
|
33 | esac |
|
|
34 | ;; |
|
|
35 | *) |
|
|
36 | DEPEND="EAPI-UNSUPPORTED" |
|
|
37 | ;; |
|
|
38 | esac |
|
|
39 | |
|
|
40 | EXPORT_FUNCTIONS ${PERL_EXPF} |
|
|
41 | |
|
|
42 | DESCRIPTION="Based on the $ECLASS eclass" |
|
|
43 | |
|
|
44 | LICENSE="${LICENSE:-|| ( Artistic GPL-1 GPL-2 GPL-3 )}" |
|
|
45 | |
|
|
46 | [[ -z "${SRC_URI}" && -z "${MODULE_A}" ]] && MODULE_A="${MY_P:-${P}}.tar.gz" |
|
|
47 | [[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \ |
|
|
48 | SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION:+${MODULE_SECTION}/}${MODULE_A}" |
|
|
49 | [[ -z "${HOMEPAGE}" ]] && \ |
|
|
50 | HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}/" |
|
|
51 | |
| 19 | SRC_PREP="no" |
52 | SRC_PREP="no" |
|
|
53 | SRC_TEST="skip" |
|
|
54 | PREFER_BUILDPL="yes" |
| 20 | |
55 | |
| 21 | SITE_LIB="" |
56 | pm_echovar="" |
| 22 | ARCH_LIB="" |
57 | perlinfo_done=false |
| 23 | POD_DIR="" |
|
|
| 24 | |
58 | |
| 25 | # handling of DESTDIR changed in makemaker 6.11 |
59 | perl-module_src_unpack() { |
| 26 | MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION gt "6.11" )'` |
60 | debug-print-function $FUNCNAME "$@" |
|
|
61 | base_src_unpack |
|
|
62 | has src_prepare ${PERL_EXPF} || perl-module_src_prepare |
|
|
63 | } |
|
|
64 | |
|
|
65 | perl-module_src_prepare() { |
|
|
66 | debug-print-function $FUNCNAME "$@" |
|
|
67 | has src_prepare ${PERL_EXPF} && base_src_prepare |
|
|
68 | perl_fix_osx_extra |
|
|
69 | esvn_clean |
|
|
70 | } |
|
|
71 | |
|
|
72 | perl-module_src_configure() { |
|
|
73 | debug-print-function $FUNCNAME "$@" |
|
|
74 | perl-module_src_prep |
|
|
75 | } |
| 27 | |
76 | |
| 28 | perl-module_src_prep() { |
77 | perl-module_src_prep() { |
| 29 | |
78 | debug-print-function $FUNCNAME "$@" |
|
|
79 | [[ ${SRC_PREP} = yes ]] && return 0 |
| 30 | SRC_PREP="yes" |
80 | SRC_PREP="yes" |
| 31 | if [ "${style}" == "builder" ]; then |
81 | |
| 32 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
82 | perl_set_version |
| 33 | else |
83 | perl_set_eprefix |
| 34 | if [ "${MMSIXELEVEN}" ]; then |
84 | |
| 35 | perl Makefile.PL ${myconf} \ |
85 | export PERL_MM_USE_DEFAULT=1 |
| 36 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
86 | # Disable ExtUtils::AutoInstall from prompting |
| 37 | else |
87 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
| 38 | perl Makefile.PL ${myconf} \ |
88 | |
| 39 | PREFIX=${D}/usr INSTALLDIRS=vendor |
89 | if [[ ${PREFER_BUILDPL} == yes && -f Build.PL ]] ; then |
|
|
90 | einfo "Using Module::Build" |
|
|
91 | if [[ ${DEPEND} != *virtual/perl-Module-Build* && ${PN} != Module-Build ]] ; then |
|
|
92 | ewarn "QA Notice: The ebuild uses Module::Build but doesn't depend on it." |
|
|
93 | ewarn " Add virtual/perl-Module-Build to DEPEND!" |
| 40 | fi |
94 | fi |
|
|
95 | set -- \ |
|
|
96 | --installdirs=vendor \ |
|
|
97 | --libdoc= \ |
|
|
98 | --destdir="${D}" \ |
|
|
99 | --create_packlist=0 \ |
|
|
100 | ${myconf} |
|
|
101 | einfo "perl Build.PL" "$@" |
|
|
102 | perl Build.PL "$@" <<< "${pm_echovar}" \ |
|
|
103 | || die "Unable to build! (are you using USE=\"build\"?)" |
|
|
104 | elif [[ -f Makefile.PL ]] ; then |
|
|
105 | einfo "Using ExtUtils::MakeMaker" |
|
|
106 | set -- \ |
|
|
107 | PREFIX=${EPREFIX}/usr \ |
|
|
108 | INSTALLDIRS=vendor \ |
|
|
109 | INSTALLMAN3DIR='none' \ |
|
|
110 | DESTDIR="${D}" \ |
|
|
111 | ${myconf} |
|
|
112 | einfo "perl Makefile.PL" "$@" |
|
|
113 | perl Makefile.PL "$@" <<< "${pm_echovar}" \ |
|
|
114 | || die "Unable to build! (are you using USE=\"build\"?)" |
| 41 | fi |
115 | fi |
| 42 | |
116 | if [[ ! -f Build.PL && ! -f Makefile.PL ]] ; then |
|
|
117 | einfo "No Make or Build file detected..." |
|
|
118 | return |
|
|
119 | fi |
| 43 | } |
120 | } |
| 44 | |
121 | |
| 45 | perl-module_src_compile() { |
122 | perl-module_src_compile() { |
|
|
123 | debug-print-function $FUNCNAME "$@" |
|
|
124 | perl_set_version |
| 46 | |
125 | |
| 47 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
126 | has src_configure ${PERL_EXPF} || perl-module_src_prep |
| 48 | if [ "${style}" != "builder" ]; then |
127 | |
|
|
128 | if [[ -f Build ]] ; then |
|
|
129 | ./Build build \ |
| 49 | make ${mymake} || die "compilation failed" |
130 | || die "compilation failed" |
|
|
131 | elif [[ -f Makefile ]] ; then |
|
|
132 | emake \ |
|
|
133 | OTHERLDFLAGS="${LDFLAGS}" \ |
|
|
134 | ${mymake} \ |
|
|
135 | || die "compilation failed" |
|
|
136 | # OPTIMIZE="${CFLAGS}" \ |
| 50 | fi |
137 | fi |
| 51 | |
|
|
| 52 | } |
138 | } |
|
|
139 | |
|
|
140 | # For testers: |
|
|
141 | # This code attempts to work out your threadingness from MAKEOPTS |
|
|
142 | # and apply them to Test::Harness. |
|
|
143 | # |
|
|
144 | # If you want more verbose testing, set TEST_VERBOSE=1 |
|
|
145 | # in your bashrc | /etc/make.conf | ENV |
|
|
146 | # |
|
|
147 | # For ebuild writers: |
|
|
148 | # If you wish to enable default tests w/ 'make test' , |
|
|
149 | # |
|
|
150 | # SRC_TEST="do" |
|
|
151 | # |
|
|
152 | # If you wish to have threads run in parallel ( using the users makeopts ) |
|
|
153 | # all of the following have been tested to work. |
|
|
154 | # |
|
|
155 | # SRC_TEST="do parallel" |
|
|
156 | # SRC_TEST="parallel" |
|
|
157 | # SRC_TEST="parallel do" |
|
|
158 | # SRC_TEST=parallel |
|
|
159 | # |
| 53 | |
160 | |
| 54 | perl-module_src_test() { |
161 | perl-module_src_test() { |
| 55 | if [ "${style}" == "builder" ]; then |
162 | debug-print-function $FUNCNAME "$@" |
| 56 | perl ${S}/Build test |
163 | if has 'do' ${SRC_TEST} || has 'parallel' ${SRC_TEST} ; then |
| 57 | else |
164 | if has "${TEST_VERBOSE:-0}" 0 && has 'parallel' ${SRC_TEST} ; then |
| 58 | make test |
165 | export HARNESS_OPTIONS=j$(echo -j1 ${MAKEOPTS} | sed -r "s/.*(-j\s*|--jobs=)([0-9]+).*/\2/" ) |
|
|
166 | einfo "Test::Harness Jobs=${HARNESS_OPTIONS}" |
| 59 | fi |
167 | fi |
| 60 | |
168 | ${perlinfo_done} || perl_set_version |
|
|
169 | if [[ -f Build ]] ; then |
|
|
170 | ./Build test verbose=${TEST_VERBOSE:-0} || die "test failed" |
|
|
171 | elif [[ -f Makefile ]] ; then |
|
|
172 | emake test TEST_VERBOSE=${TEST_VERBOSE:-0} || die "test failed" |
|
|
173 | fi |
|
|
174 | fi |
| 61 | } |
175 | } |
| 62 | |
176 | |
| 63 | perl-module_src_install() { |
177 | perl-module_src_install() { |
| 64 | |
178 | debug-print-function $FUNCNAME "$@" |
| 65 | perlinfo |
179 | |
| 66 | dodir ${POD_DIR} |
180 | perl_set_version |
| 67 | |
181 | perl_set_eprefix |
| 68 | test -z ${mytargets} && mytargets="install" |
182 | |
| 69 | eval `perl '-V:installsitearch'` |
183 | local f |
| 70 | SITE_ARCH=${installsitearch} |
184 | |
| 71 | eval `perl '-V:installarchlib'` |
185 | if [[ -z ${mytargets} ]] ; then |
| 72 | ARCH_LIB=${installarchlib} |
186 | case "${CATEGORY}" in |
| 73 | |
187 | dev-perl|perl-core) mytargets="pure_install" ;; |
| 74 | if [ "${style}" == "builder" ]; then |
188 | *) mytargets="install" ;; |
| 75 | perl ${S}/Build install |
189 | esac |
| 76 | else |
190 | fi |
| 77 | if [ "${MMSIXELEVEN}" ]; then |
191 | |
|
|
192 | if [[ -f Build ]] ; then |
|
|
193 | ./Build ${mytargets} \ |
|
|
194 | || die "./Build ${mytargets} failed" |
|
|
195 | elif [[ -f Makefile ]] ; then |
| 78 | make ${myinst} ${mytargets} || die |
196 | emake ${myinst} ${mytargets} \ |
| 79 | else |
197 | || die "emake ${myinst} ${mytargets} failed" |
| 80 | make \ |
|
|
| 81 | PREFIX=${D}/usr \ |
|
|
| 82 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 83 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 84 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 85 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 86 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 87 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 88 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 89 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 90 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 91 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 92 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 93 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 94 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 95 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 96 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 97 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 98 | INSTALLVENDORMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 99 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
| 100 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
| 101 | ${myinst} \ |
|
|
| 102 | ${mytargets} || die |
|
|
| 103 | fi |
198 | fi |
| 104 | fi |
|
|
| 105 | |
199 | |
| 106 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
200 | perl_delete_module_manpages |
| 107 | then |
201 | perl_delete_localpod |
| 108 | touch ${D}/${POD_DIR}/${P}.pod |
202 | perl_delete_packlist |
| 109 | sed -e "s:${D}::g" \ |
203 | perl_remove_temppath |
| 110 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 111 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 112 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
| 113 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
| 114 | fi |
|
|
| 115 | |
|
|
| 116 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
| 117 | then |
|
|
| 118 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 119 | sed -e "s:${D}::g" \ |
|
|
| 120 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 121 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 122 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 123 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
| 124 | fi |
|
|
| 125 | |
204 | |
| 126 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
205 | for f in Change* CHANGES README* TODO FAQ ${mydoc}; do |
| 127 | sed -i -e "s:${D}:/:g" ${FILE} |
206 | [[ -s ${f} ]] && dodoc ${f} |
| 128 | done |
207 | done |
| 129 | |
208 | |
| 130 | for doc in Change* MANIFEST* README*; do |
209 | perl_link_duallife_scripts |
| 131 | [ -s "$doc" ] && dodoc $doc |
|
|
| 132 | done |
|
|
| 133 | dodoc ${mydoc} |
|
|
| 134 | } |
210 | } |
| 135 | |
|
|
| 136 | |
211 | |
| 137 | perl-module_pkg_setup() { |
212 | perl-module_pkg_setup() { |
| 138 | |
213 | debug-print-function $FUNCNAME "$@" |
| 139 | perlinfo |
214 | perl_set_version |
| 140 | } |
215 | } |
| 141 | |
|
|
| 142 | |
216 | |
| 143 | perl-module_pkg_preinst() { |
217 | perl-module_pkg_preinst() { |
| 144 | |
218 | debug-print-function $FUNCNAME "$@" |
| 145 | perlinfo |
219 | perl_set_version |
| 146 | } |
220 | } |
| 147 | |
221 | |
| 148 | perl-module_pkg_postinst() { |
222 | perl-module_pkg_postinst() { |
| 149 | |
223 | debug-print-function $FUNCNAME "$@" |
| 150 | updatepod |
224 | perl_link_duallife_scripts |
| 151 | } |
225 | } |
| 152 | |
226 | |
| 153 | perl-module_pkg_prerm() { |
227 | perl-module_pkg_prerm() { |
| 154 | |
228 | debug-print-function $FUNCNAME "$@" |
| 155 | updatepod |
|
|
| 156 | } |
229 | } |
| 157 | |
230 | |
| 158 | perl-module_pkg_postrm() { |
231 | perl-module_pkg_postrm() { |
| 159 | |
232 | debug-print-function $FUNCNAME "$@" |
| 160 | updatepod |
233 | perl_link_duallife_scripts |
| 161 | } |
234 | } |
| 162 | |
|
|
| 163 | perlinfo() { |
|
|
| 164 | |
|
|
| 165 | if [ -f /usr/bin/perl ] |
|
|
| 166 | then |
|
|
| 167 | eval `perl '-V:installarchlib'` |
|
|
| 168 | eval `perl '-V:installsitearch'` |
|
|
| 169 | ARCH_LIB=${installarchlib} |
|
|
| 170 | SITE_LIB=${installsitearch} |
|
|
| 171 | |
|
|
| 172 | eval `perl '-V:version'` |
|
|
| 173 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
| 174 | fi |
|
|
| 175 | |
|
|
| 176 | } |
|
|
| 177 | |
|
|
| 178 | updatepod() { |
|
|
| 179 | perlinfo |
|
|
| 180 | |
|
|
| 181 | if [ -d "${POD_DIR}" ] |
|
|
| 182 | then |
|
|
| 183 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
| 184 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
| 185 | rm -f ${FILE} |
|
|
| 186 | done |
|
|
| 187 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
| 188 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
| 189 | rm -f ${FILE} |
|
|
| 190 | done |
|
|
| 191 | fi |
|
|
| 192 | } |
|
|