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