| 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.56 2004/02/26 02:43:45 robbat2 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.4 2002/05/05 08:05:32 seemant 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 | . /usr/portage/eclass/inherit.eclass || die |
11 | INHERITED="${INHERITED} ${ECLASS}" |
| 10 | inherit perl-post |
|
|
| 11 | |
12 | |
| 12 | ECLASS=base |
13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 13 | EXPORT_FUNCTIONS src_compile src_install |
14 | src_compile src_install src_test \ |
|
|
15 | perlinfo updatepod |
| 14 | |
16 | |
| 15 | newdepend ">=sys-devel/perl-5" |
17 | eval `perl '-V:version'` |
|
|
18 | newdepend ">=dev-lang/perl-5.8.0-r12" |
|
|
19 | SRC_PREP="no" |
|
|
20 | SRC_TEST="skip" |
| 16 | |
21 | |
| 17 | base_src_compile() { |
22 | SITE_LIB="" |
|
|
23 | ARCH_LIB="" |
|
|
24 | POD_DIR="" |
|
|
25 | |
|
|
26 | # handling of DESTDIR changed in makemaker 6.11 |
|
|
27 | MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION ge "6.11" )'` |
|
|
28 | |
|
|
29 | perl-module_src_prep() { |
|
|
30 | SRC_PREP="yes" |
|
|
31 | if [ "${style}" == "builder" ]; then |
|
|
32 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
33 | else |
|
|
34 | if [ "${MMSIXELEVEN}" ]; then |
| 18 | perl Makefile.PL ${myconf} |
35 | perl Makefile.PL ${myconf} \ |
| 19 | make || die |
36 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
37 | else |
|
|
38 | perl Makefile.PL ${myconf} \ |
|
|
39 | PREFIX=${D}/usr INSTALLDIRS=vendor |
|
|
40 | fi |
|
|
41 | fi |
|
|
42 | |
| 20 | } |
43 | } |
| 21 | |
44 | |
| 22 | base_src_install() { |
45 | perl-module_src_compile() { |
|
|
46 | |
|
|
47 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
48 | if [ "${style}" != "builder" ]; then |
|
|
49 | make ${mymake} || die "compilation failed" |
|
|
50 | fi |
|
|
51 | |
|
|
52 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
53 | perl-module_src_test || die "test failed" |
|
|
54 | SRC_TEST="done" |
|
|
55 | fi |
|
|
56 | } |
|
|
57 | |
|
|
58 | perl-module_src_test() { |
|
|
59 | if [ "${style}" == "builder" ]; then |
|
|
60 | perl ${S}/Build test |
|
|
61 | else |
|
|
62 | make test |
|
|
63 | fi |
|
|
64 | |
|
|
65 | } |
|
|
66 | |
|
|
67 | perl-module_src_install() { |
| 23 | |
68 | |
|
|
69 | perlinfo |
| 24 | dodir ${POD_DIR} |
70 | dodir ${POD_DIR} |
| 25 | |
71 | |
|
|
72 | test -z ${mytargets} && mytargets="install" |
|
|
73 | eval `perl '-V:installsitearch'` |
|
|
74 | SITE_ARCH=${installsitearch} |
|
|
75 | eval `perl '-V:installarchlib'` |
|
|
76 | ARCH_LIB=${installarchlib} |
|
|
77 | |
|
|
78 | if [ "${style}" == "builder" ]; then |
|
|
79 | perl ${S}/Build install |
|
|
80 | else |
|
|
81 | if [ "${MMSIXELEVEN}" ]; then |
|
|
82 | make ${myinst} ${mytargets} || die |
|
|
83 | else |
| 26 | make \ |
84 | make \ |
| 27 | PREFIX=${D}/usr \ |
85 | PREFIX=${D}/usr \ |
| 28 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
86 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
| 29 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
87 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
| 30 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
88 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
| 31 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
89 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
| 32 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
90 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
| 33 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
91 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
| 34 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
92 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
| 35 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
93 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
| 36 | install || die |
94 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
95 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
96 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
97 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
98 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
99 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
100 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
101 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
102 | INSTALLVENDORMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
103 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
104 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
105 | ${myinst} \ |
|
|
106 | ${mytargets} || die |
|
|
107 | fi |
|
|
108 | fi |
| 37 | |
109 | |
| 38 | eval `perl '-V:installarchlib'` |
110 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
111 | then |
|
|
112 | touch ${D}/${POD_DIR}/${P}.pod |
| 39 | sed -e "s:${D}::g" \ |
113 | sed -e "s:${D}::g" \ |
| 40 | ${D}/${installarchlib}/perllocal.pod \ |
114 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 41 | > ${D}/${POD_DIR}/${PF}.pod |
115 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
116 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
117 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
118 | fi |
| 42 | |
119 | |
| 43 | rm -f ${D}/${installarchlib}/perllocal.pod |
120 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
121 | then |
|
|
122 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
123 | sed -e "s:${D}::g" \ |
|
|
124 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
125 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
126 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
127 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
128 | fi |
| 44 | |
129 | |
| 45 | dodoc ChangeLog MANIFEST NOTES README VERSIONS WARNING ToDo |
130 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
|
|
131 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
132 | done |
|
|
133 | |
|
|
134 | for doc in Change* MANIFEST* README*; do |
|
|
135 | [ -s "$doc" ] && dodoc $doc |
|
|
136 | done |
|
|
137 | dodoc ${mydoc} |
| 46 | } |
138 | } |
|
|
139 | |
|
|
140 | |
|
|
141 | perl-module_pkg_setup() { |
|
|
142 | |
|
|
143 | perlinfo |
|
|
144 | } |
|
|
145 | |
|
|
146 | |
|
|
147 | perl-module_pkg_preinst() { |
|
|
148 | |
|
|
149 | perlinfo |
|
|
150 | } |
|
|
151 | |
|
|
152 | perl-module_pkg_postinst() { |
|
|
153 | |
|
|
154 | updatepod |
|
|
155 | } |
|
|
156 | |
|
|
157 | perl-module_pkg_prerm() { |
|
|
158 | |
|
|
159 | updatepod |
|
|
160 | } |
|
|
161 | |
|
|
162 | perl-module_pkg_postrm() { |
|
|
163 | |
|
|
164 | updatepod |
|
|
165 | } |
|
|
166 | |
|
|
167 | perlinfo() { |
|
|
168 | |
|
|
169 | if [ -f /usr/bin/perl ] |
|
|
170 | then |
|
|
171 | eval `perl '-V:installarchlib'` |
|
|
172 | eval `perl '-V:installsitearch'` |
|
|
173 | ARCH_LIB=${installarchlib} |
|
|
174 | SITE_LIB=${installsitearch} |
|
|
175 | |
|
|
176 | eval `perl '-V:version'` |
|
|
177 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
178 | fi |
|
|
179 | |
|
|
180 | } |
|
|
181 | |
|
|
182 | updatepod() { |
|
|
183 | perlinfo |
|
|
184 | |
|
|
185 | if [ -d "${POD_DIR}" ] |
|
|
186 | then |
|
|
187 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
188 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
189 | rm -f ${FILE} |
|
|
190 | done |
|
|
191 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
192 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
193 | rm -f ${FILE} |
|
|
194 | done |
|
|
195 | fi |
|
|
196 | } |