| 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.65 2004/10/01 21:32:07 mcummings 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 | # Maintained by the Perl herd <perl@gentoo.org> |
|
|
7 | # |
| 5 | # The perl-module eclass is designed to allow easier installation of perl |
8 | # The perl-module eclass is designed to allow easier installation of perl |
| 6 | # modules, and their incorporation into the Gentoo Linux system. |
9 | # modules, and their incorporation into the Gentoo Linux system. |
| 7 | |
10 | |
| 8 | #first inherit the pkg_postinst() and pkg_postrm() functions |
11 | ECLASS=perl-module |
| 9 | . /usr/portage/eclass/inherit.eclass || die |
12 | INHERITED="${INHERITED} ${ECLASS}" |
| 10 | inherit perl-post |
|
|
| 11 | |
13 | |
| 12 | ECLASS=base |
14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 13 | EXPORT_FUNCTIONS src_compile src_install |
15 | src_compile src_install src_test \ |
|
|
16 | perlinfo updatepod |
| 14 | |
17 | |
| 15 | newdepend ">=sys-devel/perl-5" |
18 | # 2004.05.10 rac |
|
|
19 | # block on makemaker versions earlier than that in the 5.8.2 core. in |
|
|
20 | # actuality, this should be handled in the perl ebuild, so every perl |
|
|
21 | # ebuild should block versions of MakeMaker older than the one it |
|
|
22 | # carries. in the meantime, since we have dumped support for MakeMaker |
|
|
23 | # <6.11 and the associated broken DESTDIR handling, block here to save |
|
|
24 | # people from sandbox trouble. |
|
|
25 | # |
|
|
26 | # 2004.05.25 rac |
|
|
27 | # for the same reasons, make the perl dep >=5.8.2 to get everybody |
|
|
28 | # with 5.8.0 and its 6.03 makemaker up to a version that can |
|
|
29 | # understand DESTDIR |
|
|
30 | # |
|
|
31 | # 2004.10.01 mcummings |
|
|
32 | # noticed a discrepancy in how we were sed fixing references to ${D} |
| 16 | |
33 | |
| 17 | base_src_compile() { |
34 | DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
|
|
35 | SRC_PREP="no" |
|
|
36 | SRC_TEST="skip" |
|
|
37 | |
|
|
38 | PERL_VERSION="" |
|
|
39 | SITE_ARCH="" |
|
|
40 | SITE_LIB="" |
|
|
41 | VENDOR_LIB="" |
|
|
42 | VENDOR_ARCH="" |
|
|
43 | ARCH_LIB="" |
|
|
44 | POD_DIR="" |
|
|
45 | |
|
|
46 | perl-module_src_prep() { |
|
|
47 | |
|
|
48 | perlinfo |
|
|
49 | |
|
|
50 | export PERL_MM_USE_DEFAULT=1 |
|
|
51 | |
|
|
52 | SRC_PREP="yes" |
|
|
53 | if [ "${style}" == "builder" ]; then |
|
|
54 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
55 | else |
| 18 | perl Makefile.PL ${myconf} |
56 | perl Makefile.PL ${myconf} \ |
| 19 | make || die |
57 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
58 | fi |
| 20 | } |
59 | } |
| 21 | |
60 | |
| 22 | base_src_install() { |
61 | perl-module_src_compile() { |
|
|
62 | |
|
|
63 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
64 | if [ "${style}" != "builder" ]; then |
|
|
65 | make ${mymake} || die "compilation failed" |
|
|
66 | fi |
|
|
67 | |
|
|
68 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
69 | perl-module_src_test || die "test failed" |
|
|
70 | SRC_TEST="done" |
|
|
71 | fi |
|
|
72 | } |
|
|
73 | |
|
|
74 | perl-module_src_test() { |
|
|
75 | if [ "${style}" == "builder" ]; then |
|
|
76 | perl ${S}/Build test |
|
|
77 | else |
|
|
78 | make test |
|
|
79 | fi |
|
|
80 | } |
|
|
81 | |
|
|
82 | perl-module_src_install() { |
| 23 | |
83 | |
|
|
84 | perlinfo |
| 24 | dodir ${POD_DIR} |
85 | dodir ${POD_DIR} |
| 25 | |
86 | |
| 26 | make \ |
87 | test -z ${mytargets} && mytargets="install" |
| 27 | PREFIX=${D}/usr \ |
88 | |
| 28 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
89 | if [ "${style}" == "builder" ]; then |
| 29 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
90 | perl ${S}/Build install |
| 30 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
91 | else |
| 31 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
92 | make ${myinst} ${mytargets} || die |
| 32 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
93 | fi |
| 33 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 34 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 35 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 36 | install || die |
|
|
| 37 | |
94 | |
|
|
95 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
96 | then |
|
|
97 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
98 | sed -e "s:${D}::g" \ |
|
|
99 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
100 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
101 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
|
|
102 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
|
|
103 | fi |
|
|
104 | |
|
|
105 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
106 | then |
|
|
107 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
108 | sed -e "s:${D}::g" \ |
|
|
109 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
110 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
111 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
|
|
112 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
113 | fi |
|
|
114 | |
|
|
115 | if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
|
|
116 | then |
|
|
117 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
118 | sed -e "s:${D}::g" \ |
|
|
119 | ${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
120 | touch ${D}/${POD_DIR}/${P}.pod.vendor |
|
|
121 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
|
|
122 | rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
|
|
123 | fi |
|
|
124 | |
|
|
125 | |
|
|
126 | for FILE in `find ${D} -type f |grep -v '.so'`; do |
|
|
127 | STAT=`file $FILE| grep -i " text"` |
|
|
128 | if [ "${STAT}x" != "x" ]; then |
|
|
129 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
130 | fi |
|
|
131 | done |
|
|
132 | |
|
|
133 | for doc in Change* MANIFEST* README*; do |
|
|
134 | [ -s "$doc" ] && dodoc $doc |
|
|
135 | done |
|
|
136 | dodoc ${mydoc} |
|
|
137 | } |
|
|
138 | |
|
|
139 | |
|
|
140 | perl-module_pkg_setup() { |
|
|
141 | |
|
|
142 | perlinfo |
|
|
143 | } |
|
|
144 | |
|
|
145 | |
|
|
146 | perl-module_pkg_preinst() { |
|
|
147 | |
|
|
148 | perlinfo |
|
|
149 | } |
|
|
150 | |
|
|
151 | perl-module_pkg_postinst() { |
|
|
152 | |
|
|
153 | updatepod |
|
|
154 | } |
|
|
155 | |
|
|
156 | perl-module_pkg_prerm() { |
|
|
157 | |
|
|
158 | updatepod |
|
|
159 | } |
|
|
160 | |
|
|
161 | perl-module_pkg_postrm() { |
|
|
162 | |
|
|
163 | updatepod |
|
|
164 | } |
|
|
165 | |
|
|
166 | perlinfo() { |
|
|
167 | |
|
|
168 | eval `perl '-V:version'` |
|
|
169 | PERL_VERSION=${version} |
|
|
170 | |
|
|
171 | eval `perl '-V:installsitearch'` |
|
|
172 | SITE_ARCH=${installsitearch} |
|
|
173 | |
|
|
174 | eval `perl '-V:installsitearch'` |
|
|
175 | SITE_LIB=${installsitearch} |
|
|
176 | |
| 38 | eval `perl '-V:installarchlib'` |
177 | eval `perl '-V:installarchlib'` |
| 39 | sed -e "s:${D}::g" \ |
178 | ARCH_LIB=${installarchlib} |
| 40 | ${D}/${installarchlib}/perllocal.pod \ |
|
|
| 41 | > ${D}/${POD_DIR}/${PF}.pod |
|
|
| 42 | |
179 | |
| 43 | rm -f ${D}/${installarchlib}/perllocal.pod |
180 | eval `perl '-V:installvendorlib'` |
|
|
181 | VENDOR_LIB=${installvendorlib} |
| 44 | |
182 | |
| 45 | dodoc ChangeLog MANIFEST NOTES README VERSIONS WARNING ToDo |
183 | eval `perl '-V:installvendorarch'` |
|
|
184 | VENDOR_ARCH=${installvendorarch} |
|
|
185 | |
|
|
186 | if [ -f /usr/bin/perl ] |
|
|
187 | then |
|
|
188 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
189 | fi |
| 46 | } |
190 | } |
|
|
191 | |
|
|
192 | updatepod() { |
|
|
193 | perlinfo |
|
|
194 | |
|
|
195 | if [ -d "${POD_DIR}" ] |
|
|
196 | then |
|
|
197 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
198 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
199 | rm -f ${FILE} |
|
|
200 | done |
|
|
201 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
202 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
203 | rm -f ${FILE} |
|
|
204 | done |
|
|
205 | for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
|
|
206 | cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
|
|
207 | rm -f ${FILE} |
|
|
208 | done |
|
|
209 | fi |
|
|
210 | } |