| 1 | # Copyright 1999-2003 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.34 2003/03/11 21:26:32 seemant Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.43 2003/06/27 00:57:17 mcummings Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # 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 |
| 8 | # modules, and their incorporation into the Gentoo Linux system. |
8 | # modules, and their incorporation into the Gentoo Linux system. |
| 9 | |
9 | |
| 10 | #first inherit the pkg_postinst() and pkg_postrm() functions |
10 | ECLASS=perl-module |
| 11 | inherit perl-post |
11 | INHERITED="${INHERITED} ${ECLASS}" |
| 12 | |
12 | |
| 13 | ECLASS=perl-module |
13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 14 | INHERITED="$INHERITED $ECLASS" |
|
|
| 15 | |
|
|
| 16 | EXPORT_FUNCTIONS src_compile src_install src_test |
14 | src_compile src_install src_test \ |
|
|
15 | perlinfo updatepod |
| 17 | |
16 | |
| 18 | eval `perl '-V:version'` |
17 | eval `perl '-V:version'` |
| 19 | DEPEND="dev-lang/perl |
18 | DEPEND=">=dev-lang/perl-5.6.1-r12 |
| 20 | >=dev-perl/ExtUtils-MakeMaker-6.05-r1 |
|
|
| 21 | ${DEPEND}" |
19 | ${DEPEND}" |
| 22 | SRC_PREP="no" |
20 | SRC_PREP="no" |
|
|
21 | |
|
|
22 | SITE_LIB="" |
|
|
23 | ARCH_LIB="" |
|
|
24 | POD_DIR="" |
| 23 | |
25 | |
| 24 | perl-module_src_prep() { |
26 | perl-module_src_prep() { |
| 25 | |
27 | |
| 26 | SRC_PREP="yes" |
28 | SRC_PREP="yes" |
|
|
29 | if [ "${style}" == "builder" ]; then |
|
|
30 | perl ${S}/Build.PL destdir=${D} |
|
|
31 | else |
| 27 | perl Makefile.PL ${myconf} \ |
32 | perl Makefile.PL ${myconf} \ |
| 28 | PREFIX=${D}/usr |
33 | PREFIX=${D}/usr |
|
|
34 | fi |
|
|
35 | |
| 29 | } |
36 | } |
| 30 | |
37 | |
| 31 | perl-module_src_compile() { |
38 | perl-module_src_compile() { |
| 32 | |
39 | |
| 33 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
40 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
41 | if [ "${style}" != "builder" ]; then |
| 34 | make ${mymake} || die "compilation failed" |
42 | make ${mymake} || die "compilation failed" |
|
|
43 | fi |
|
|
44 | |
| 35 | } |
45 | } |
| 36 | |
46 | |
| 37 | perl-module_src_test() { |
47 | perl-module_src_test() { |
|
|
48 | if [ "${style}" == "builder" ]; then |
|
|
49 | perl ${S}/Build test |
|
|
50 | else |
| 38 | make test |
51 | make test |
|
|
52 | fi |
|
|
53 | |
| 39 | } |
54 | } |
| 40 | |
55 | |
| 41 | perl-module_src_install() { |
56 | perl-module_src_install() { |
| 42 | |
57 | |
| 43 | perl-post_perlinfo |
58 | perlinfo |
| 44 | dodir ${POD_DIR} |
59 | dodir ${POD_DIR} |
| 45 | |
60 | |
| 46 | test -z ${mytargets} && mytargets="install" |
61 | test -z ${mytargets} && mytargets="install" |
| 47 | eval `perl '-V:installsitearch'` |
62 | eval `perl '-V:installsitearch'` |
| 48 | SITE_ARCH=${installsitearch} |
63 | SITE_ARCH=${installsitearch} |
| 49 | eval `perl '-V:installarchlib'` |
64 | eval `perl '-V:installarchlib'` |
| 50 | ARCH_LIB=${installarchlib} |
65 | ARCH_LIB=${installarchlib} |
| 51 | |
66 | |
| 52 | |
67 | if [ "${style}" == "builder" ]; then |
|
|
68 | perl ${S}/Build install |
|
|
69 | else |
| 53 | make \ |
70 | make \ |
| 54 | PREFIX=${D}/usr \ |
71 | PREFIX=${D}/usr \ |
| 55 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
72 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
| 56 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
73 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
| 57 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
74 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
| … | |
… | |
| 70 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
87 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
| 71 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
88 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
| 72 | INSTALLSCRIPT=${D}/usr/bin \ |
89 | INSTALLSCRIPT=${D}/usr/bin \ |
| 73 | ${myinst} \ |
90 | ${myinst} \ |
| 74 | ${mytargets} || die |
91 | ${mytargets} || die |
| 75 | |
92 | fi |
| 76 | |
93 | |
| 77 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
94 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 78 | then |
95 | then |
| 79 | touch ${D}/${POD_DIR}/${P}.pod |
96 | touch ${D}/${POD_DIR}/${P}.pod |
| 80 | sed -e "s:${D}::g" \ |
97 | sed -e "s:${D}::g" \ |
| … | |
… | |
| 92 | touch ${D}/${POD_DIR}/${P}.pod.site |
109 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 93 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
110 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 94 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
111 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 95 | fi |
112 | fi |
| 96 | |
113 | |
|
|
114 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
|
|
115 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
116 | done |
|
|
117 | |
| 97 | dodoc Change* MANIFEST* README* ${mydoc} |
118 | dodoc Change* MANIFEST* README* ${mydoc} |
| 98 | } |
119 | } |
|
|
120 | |
|
|
121 | |
|
|
122 | perl-module_pkg_setup() { |
|
|
123 | |
|
|
124 | perlinfo |
|
|
125 | } |
|
|
126 | |
|
|
127 | |
|
|
128 | perl-module_pkg_preinst() { |
|
|
129 | |
|
|
130 | perlinfo |
|
|
131 | } |
|
|
132 | |
|
|
133 | perl-module_pkg_postinst() { |
|
|
134 | |
|
|
135 | updatepod |
|
|
136 | } |
|
|
137 | |
|
|
138 | perl-module_pkg_prerm() { |
|
|
139 | |
|
|
140 | updatepod |
|
|
141 | } |
|
|
142 | |
|
|
143 | perl-module_pkg_postrm() { |
|
|
144 | |
|
|
145 | updatepod |
|
|
146 | } |
|
|
147 | |
|
|
148 | perlinfo() { |
|
|
149 | |
|
|
150 | if [ -f /usr/bin/perl ] |
|
|
151 | then |
|
|
152 | eval `perl '-V:installarchlib'` |
|
|
153 | eval `perl '-V:installsitearch'` |
|
|
154 | ARCH_LIB=${installarchlib} |
|
|
155 | SITE_LIB=${installsitearch} |
|
|
156 | |
|
|
157 | eval `perl '-V:version'` |
|
|
158 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
159 | fi |
|
|
160 | |
|
|
161 | } |
|
|
162 | |
|
|
163 | updatepod() { |
|
|
164 | perlinfo |
|
|
165 | |
|
|
166 | if [ -d "${POD_DIR}" ] |
|
|
167 | then |
|
|
168 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
169 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
170 | rm -f ${FILE} |
|
|
171 | done |
|
|
172 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
173 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
174 | rm -f ${FILE} |
|
|
175 | done |
|
|
176 | fi |
|
|
177 | } |