| 1 | # Copyright 2002 Gentoo Technologies, Inc. |
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.113 2009/03/06 11:42:41 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 |
|
|
| 10 | |
16 | |
| 11 | ECLASS=perl-module |
17 | case "${EAPI:-0}" in |
| 12 | INHERITED="$INHERITED $ECLASS" |
18 | 0|1) |
|
|
19 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test src_unpack |
|
|
20 | ;; |
|
|
21 | 2) |
|
|
22 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install |
| 13 | |
23 | |
| 14 | EXPORT_FUNCTIONS src_compile src_install src_test |
24 | case "${GENTOO_DEPEND_ON_PERL:-yes}" in |
| 15 | |
25 | yes) |
| 16 | eval `perl '-V:version'` |
26 | DEPEND="dev-lang/perl[-build]" |
| 17 | DEPEND="${DEPEND} |
27 | RDEPEND="${DEPEND}" |
| 18 | sys-devel/perl" |
28 | ;; |
|
|
29 | esac |
|
|
30 | ;; |
|
|
31 | esac |
|
|
32 | |
|
|
33 | DESCRIPTION="Based on the $ECLASS eclass" |
|
|
34 | |
|
|
35 | LICENSE="${LICENSE:-|| ( Artistic GPL-2 )}" |
|
|
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}}" |
|
|
42 | |
| 19 | SRC_PREP="no" |
43 | SRC_PREP="no" |
|
|
44 | SRC_TEST="skip" |
|
|
45 | PREFER_BUILDPL="yes" |
|
|
46 | |
|
|
47 | PERL_VERSION="" |
|
|
48 | SITE_ARCH="" |
|
|
49 | SITE_LIB="" |
|
|
50 | ARCH_LIB="" |
|
|
51 | VENDOR_ARCH="" |
|
|
52 | VENDOR_LIB="" |
|
|
53 | |
|
|
54 | pm_echovar="" |
|
|
55 | perlinfo_done=false |
|
|
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 | } |
| 20 | |
72 | |
| 21 | perl-module_src_prep() { |
73 | perl-module_src_prep() { |
| 22 | |
74 | [[ "${SRC_PREP}" = "yes" ]] && return 0 |
| 23 | SRC_PREP="yes" |
75 | SRC_PREP="yes" |
|
|
76 | |
|
|
77 | ${perlinfo_done} || perlinfo |
|
|
78 | |
|
|
79 | export PERL_MM_USE_DEFAULT=1 |
|
|
80 | # Disable ExtUtils::AutoInstall from prompting |
|
|
81 | export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" |
|
|
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" |
| 24 | perl Makefile.PL ${myconf} \ |
96 | perl Makefile.PL \ |
| 25 | PREFIX=${D}/usr |
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 |
| 26 | } |
109 | } |
| 27 | |
110 | |
| 28 | perl-module_src_compile() { |
111 | perl-module_src_compile() { |
|
|
112 | ${perlinfo_done} || perlinfo |
| 29 | |
113 | |
| 30 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
114 | has "${EAPI:-0}" 0 1 && perl-module_src_prep |
|
|
115 | |
|
|
116 | if [[ -f Build ]] ; then |
|
|
117 | ./Build build \ |
| 31 | make ${mymake} || die "compilation failed" |
118 | || die "compilation failed" |
|
|
119 | elif [[ -f Makefile ]] ; then |
|
|
120 | emake \ |
|
|
121 | OTHERLDFLAGS="${LDFLAGS}" \ |
|
|
122 | ${mymake} \ |
|
|
123 | || die "compilation failed" |
|
|
124 | # OPTIMIZE="${CFLAGS}" \ |
|
|
125 | fi |
| 32 | } |
126 | } |
| 33 | |
127 | |
| 34 | perl-module_src_test() { |
128 | perl-module_src_test() { |
| 35 | make 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" |
|
|
135 | fi |
|
|
136 | fi |
| 36 | } |
137 | } |
| 37 | |
138 | |
| 38 | perl-module_src_install() { |
139 | perl-module_src_install() { |
| 39 | |
140 | local f |
| 40 | perl-post_perlinfo |
141 | ${perlinfo_done} || perlinfo |
| 41 | dodir ${POD_DIR} |
142 | |
| 42 | |
|
|
| 43 | test -z ${mytargets} && mytargets="install" |
143 | [[ -z ${mytargets} ]] && mytargets="pure_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 | |
144 | |
|
|
145 | if [[ -f Build ]] ; then |
|
|
146 | ./Build ${mytargets} \ |
|
|
147 | || die "./Build ${mytargets} failed" |
|
|
148 | elif [[ -f Makefile ]] ; then |
|
|
149 | emake ${myinst} ${mytargets} \ |
|
|
150 | || die "emake ${myinst} ${mytargets} failed" |
|
|
151 | fi |
| 58 | |
152 | |
| 59 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
153 | # einfo "Cleaning out stray man files" |
| 60 | then |
154 | find "${D}" -type f -name "*.3pm" -delete |
| 61 | touch ${D}/${POD_DIR}/${P}.pod |
155 | find "${D}"/usr/share/man -depth -type d -empty -delete 2>/dev/null |
|
|
156 | |
|
|
157 | fixlocalpod |
|
|
158 | |
|
|
159 | for f in Change* CHANGES README* ${mydoc}; do |
|
|
160 | [[ -s "${f}" ]] && dodoc ${f} |
|
|
161 | done |
|
|
162 | |
|
|
163 | find "${D}/${VENDOR_LIB}" -type f -a \( -name .packlist \ |
|
|
164 | -o \( -name '*.bs' -a -empty \) \) -delete |
|
|
165 | find "${D}/${VENDOR_LIB}" -depth -mindepth 1 -type d -empty -delete |
|
|
166 | |
|
|
167 | find "${D}" -type f -not -name '*.so' -print0 | while read -rd '' f ; do |
|
|
168 | if file "${f}" | grep -q -i " text" ; then |
|
|
169 | if grep -q "${D}" "${f}" ; then ewarn "QA: File contains a temporary path ${f}" ;fi |
| 62 | sed -e "s:${D}::g" \ |
170 | 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 |
171 | fi |
| 68 | |
172 | done |
| 69 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
| 70 | then |
|
|
| 71 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
| 72 | sed -e "s:${D}::g" \ |
|
|
| 73 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
| 74 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
| 75 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
| 76 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
| 77 | fi |
|
|
| 78 | |
|
|
| 79 | dodoc Change* MANIFEST* README* ${mydoc} |
|
|
| 80 | } |
173 | } |
|
|
174 | |
|
|
175 | perl-module_pkg_setup() { |
|
|
176 | ${perlinfo_done} || perlinfo |
|
|
177 | } |
|
|
178 | |
|
|
179 | perl-module_pkg_preinst() { |
|
|
180 | ${perlinfo_done} || perlinfo |
|
|
181 | } |
|
|
182 | |
|
|
183 | perl-module_pkg_postinst() { : ; } |
|
|
184 | # einfo "Man pages are not installed for most modules now." |
|
|
185 | # einfo "Please use perldoc instead." |
|
|
186 | #} |
|
|
187 | |
|
|
188 | perl-module_pkg_prerm() { : ; } |
|
|
189 | |
|
|
190 | perl-module_pkg_postrm() { : ; } |
|
|
191 | |
|
|
192 | perlinfo() { |
|
|
193 | perlinfo_done=true |
|
|
194 | |
|
|
195 | local f version install{site{arch,lib},archlib,vendor{arch,lib}} |
|
|
196 | for f in version install{site{arch,lib},archlib,vendor{arch,lib}} ; do |
|
|
197 | eval "$(perl -V:${f} )" |
|
|
198 | done |
|
|
199 | PERL_VERSION=${version} |
|
|
200 | SITE_ARCH=${installsitearch} |
|
|
201 | SITE_LIB=${installsitelib} |
|
|
202 | ARCH_LIB=${installarchlib} |
|
|
203 | VENDOR_LIB=${installvendorlib} |
|
|
204 | VENDOR_ARCH=${installvendorarch} |
|
|
205 | } |
|
|
206 | |
|
|
207 | fixlocalpod() { |
|
|
208 | find "${D}" -type f -name perllocal.pod -delete |
|
|
209 | find "${D}" -depth -mindepth 1 -type d -empty -delete |
|
|
210 | } |