| 1 | # Copyright 2002 Gentoo Technologies, Inc. |
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.51 2003/09/24 20:28:11 rac 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.28 2002/10/17 16:18:32 mcummings Exp $ |
6 | # |
| 5 | # 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 |
| 6 | # modules, and their incorporation into the Gentoo Linux system. |
8 | # modules, and their incorporation into the Gentoo Linux system. |
| 7 | |
9 | |
| 8 | #first inherit the pkg_postinst() and pkg_postrm() functions |
10 | ECLASS=perl-module |
| 9 | inherit perl-post |
11 | INHERITED="${INHERITED} ${ECLASS}" |
| 10 | |
12 | |
| 11 | ECLASS=perl-module |
13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 12 | INHERITED="$INHERITED $ECLASS" |
|
|
| 13 | |
|
|
| 14 | EXPORT_FUNCTIONS src_compile src_install src_test |
14 | src_compile src_install src_test \ |
|
|
15 | perlinfo updatepod |
| 15 | |
16 | |
| 16 | eval `perl '-V:version'` |
17 | eval `perl '-V:version'` |
| 17 | DEPEND="${DEPEND} |
18 | newdepend ">=dev-lang/perl-5.8.0-r12" |
| 18 | >=sys-devel/perl-5" |
|
|
| 19 | SRC_PREP="no" |
19 | SRC_PREP="no" |
|
|
20 | |
|
|
21 | SITE_LIB="" |
|
|
22 | ARCH_LIB="" |
|
|
23 | POD_DIR="" |
|
|
24 | |
|
|
25 | # handling of DESTDIR changed in makemaker 6.11 |
|
|
26 | MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION gt "6.11" )'` |
| 20 | |
27 | |
| 21 | perl-module_src_prep() { |
28 | perl-module_src_prep() { |
| 22 | |
29 | |
| 23 | SRC_PREP="yes" |
30 | SRC_PREP="yes" |
|
|
31 | if [ "${style}" == "builder" ]; then |
|
|
32 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
33 | else |
|
|
34 | if [ "${MMSIXELEVEN}" ]; then |
| 24 | perl Makefile.PL ${myconf} \ |
35 | perl Makefile.PL ${myconf} \ |
| 25 | PREFIX=${D}/usr |
36 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
37 | else |
|
|
38 | perl Makefile.PL ${myconf} \ |
|
|
39 | PREFIX=/usr INSTALLDIRS=vendor |
|
|
40 | fi |
|
|
41 | fi |
|
|
42 | |
| 26 | } |
43 | } |
| 27 | |
44 | |
| 28 | perl-module_src_compile() { |
45 | perl-module_src_compile() { |
| 29 | |
46 | |
| 30 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
47 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
48 | if [ "${style}" != "builder" ]; then |
| 31 | make ${mymake} || die "compilation failed" |
49 | make ${mymake} || die "compilation failed" |
|
|
50 | fi |
|
|
51 | |
| 32 | } |
52 | } |
| 33 | |
53 | |
| 34 | perl-module_src_test() { |
54 | perl-module_src_test() { |
|
|
55 | if [ "${style}" == "builder" ]; then |
|
|
56 | perl ${S}/Build test |
|
|
57 | else |
| 35 | make test |
58 | make test |
|
|
59 | fi |
|
|
60 | |
| 36 | } |
61 | } |
| 37 | |
62 | |
| 38 | perl-module_src_install() { |
63 | perl-module_src_install() { |
| 39 | |
64 | |
| 40 | perl-post_perlinfo |
65 | perlinfo |
| 41 | dodir ${POD_DIR} |
66 | dodir ${POD_DIR} |
| 42 | |
67 | |
| 43 | test -z ${mytargets} && mytargets="install" |
68 | test -z ${mytargets} && mytargets="install" |
| 44 | |
69 | eval `perl '-V:installsitearch'` |
|
|
70 | SITE_ARCH=${installsitearch} |
|
|
71 | eval `perl '-V:installarchlib'` |
|
|
72 | ARCH_LIB=${installarchlib} |
|
|
73 | |
|
|
74 | if [ "${style}" == "builder" ]; then |
|
|
75 | perl ${S}/Build install |
|
|
76 | else |
|
|
77 | if [ "${MMSIXELEVEN}" ]; then |
|
|
78 | make ${myinst} ${mytargets} || die |
|
|
79 | else |
| 45 | make \ |
80 | make \ |
| 46 | PREFIX=${D}/usr \ |
81 | PREFIX=${D}/usr \ |
| 47 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
82 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
| 48 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
83 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
| 49 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
84 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
| 50 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
85 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
| 51 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
86 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
| 52 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
87 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
| 53 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
88 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
| 54 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
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 \ |
| 55 | ${myinst} \ |
101 | ${myinst} \ |
| 56 | ${mytargets} || die |
102 | ${mytargets} || die |
| 57 | |
103 | fi |
|
|
104 | fi |
| 58 | |
105 | |
| 59 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
106 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 60 | then |
107 | then |
| 61 | touch ${D}/${POD_DIR}/${P}.pod |
108 | touch ${D}/${POD_DIR}/${P}.pod |
| 62 | sed -e "s:${D}::g" \ |
109 | sed -e "s:${D}::g" \ |
| … | |
… | |
| 74 | touch ${D}/${POD_DIR}/${P}.pod.site |
121 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 75 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
122 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 76 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
123 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 77 | fi |
124 | fi |
| 78 | |
125 | |
|
|
126 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
|
|
127 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
128 | done |
|
|
129 | |
| 79 | dodoc Change* MANIFEST* README* ${mydoc} |
130 | dodoc Change* MANIFEST* README* ${mydoc} |
| 80 | } |
131 | } |
|
|
132 | |
|
|
133 | |
|
|
134 | perl-module_pkg_setup() { |
|
|
135 | |
|
|
136 | perlinfo |
|
|
137 | } |
|
|
138 | |
|
|
139 | |
|
|
140 | perl-module_pkg_preinst() { |
|
|
141 | |
|
|
142 | perlinfo |
|
|
143 | } |
|
|
144 | |
|
|
145 | perl-module_pkg_postinst() { |
|
|
146 | |
|
|
147 | updatepod |
|
|
148 | } |
|
|
149 | |
|
|
150 | perl-module_pkg_prerm() { |
|
|
151 | |
|
|
152 | updatepod |
|
|
153 | } |
|
|
154 | |
|
|
155 | perl-module_pkg_postrm() { |
|
|
156 | |
|
|
157 | updatepod |
|
|
158 | } |
|
|
159 | |
|
|
160 | perlinfo() { |
|
|
161 | |
|
|
162 | if [ -f /usr/bin/perl ] |
|
|
163 | then |
|
|
164 | eval `perl '-V:installarchlib'` |
|
|
165 | eval `perl '-V:installsitearch'` |
|
|
166 | ARCH_LIB=${installarchlib} |
|
|
167 | SITE_LIB=${installsitearch} |
|
|
168 | |
|
|
169 | eval `perl '-V:version'` |
|
|
170 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
171 | fi |
|
|
172 | |
|
|
173 | } |
|
|
174 | |
|
|
175 | updatepod() { |
|
|
176 | perlinfo |
|
|
177 | |
|
|
178 | if [ -d "${POD_DIR}" ] |
|
|
179 | then |
|
|
180 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
181 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
182 | rm -f ${FILE} |
|
|
183 | done |
|
|
184 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
185 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
186 | rm -f ${FILE} |
|
|
187 | done |
|
|
188 | fi |
|
|
189 | } |