| 1 | # Copyright 2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 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.61 2004/05/10 21:10:50 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.8 2002/05/06 14:34:55 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 src_test |
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. |
| 16 | |
25 | |
| 17 | base_src_compile() { |
26 | DEPEND="dev-lang/perl !<dev-perl/ExtUtils-MakeMaker-6.17" |
|
|
27 | SRC_PREP="no" |
|
|
28 | SRC_TEST="skip" |
| 18 | |
29 | |
|
|
30 | PERL_VERSION="" |
|
|
31 | SITE_ARCH="" |
|
|
32 | SITE_LIB="" |
|
|
33 | ARCH_LIB="" |
|
|
34 | POD_DIR="" |
|
|
35 | |
|
|
36 | perl-module_src_prep() { |
|
|
37 | |
|
|
38 | perlinfo |
|
|
39 | |
|
|
40 | SRC_PREP="yes" |
|
|
41 | if [ "${style}" == "builder" ]; then |
|
|
42 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
43 | else |
| 19 | perl Makefile.PL ${myconf} |
44 | perl Makefile.PL ${myconf} \ |
| 20 | make ${mymake} || die "compilation failed" |
45 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
46 | fi |
| 21 | } |
47 | } |
| 22 | |
48 | |
| 23 | base_src_test() { |
49 | perl-module_src_compile() { |
| 24 | |
50 | |
| 25 | make test || die |
51 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
52 | if [ "${style}" != "builder" ]; then |
|
|
53 | make ${mymake} || die "compilation failed" |
|
|
54 | fi |
|
|
55 | |
|
|
56 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
57 | perl-module_src_test || die "test failed" |
|
|
58 | SRC_TEST="done" |
|
|
59 | fi |
| 26 | } |
60 | } |
| 27 | |
61 | |
| 28 | base_src_install() { |
62 | perl-module_src_test() { |
|
|
63 | if [ "${style}" == "builder" ]; then |
|
|
64 | perl ${S}/Build test |
|
|
65 | else |
|
|
66 | make test |
|
|
67 | fi |
|
|
68 | } |
| 29 | |
69 | |
|
|
70 | perl-module_src_install() { |
|
|
71 | |
|
|
72 | perlinfo |
| 30 | dodir ${POD_DIR} |
73 | dodir ${POD_DIR} |
| 31 | |
74 | |
| 32 | make \ |
75 | test -z ${mytargets} && mytargets="install" |
| 33 | PREFIX=${D}/usr \ |
76 | |
| 34 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
77 | if [ "${style}" == "builder" ]; then |
| 35 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
78 | perl ${S}/Build install |
| 36 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
79 | else |
| 37 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
80 | make ${myinst} ${mytargets} || die |
| 38 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
81 | fi |
| 39 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 40 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 41 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 42 | ${myinst} \ |
|
|
| 43 | install || die |
|
|
| 44 | |
82 | |
|
|
83 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
|
|
84 | then |
|
|
85 | touch ${D}/${POD_DIR}/${P}.pod |
| 45 | sed -e "s:${D}::g" \ |
86 | sed -e "s:${D}::g" \ |
|
|
87 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
88 | touch ${D}/${POD_DIR}/${P}.pod.arch |
|
|
89 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 46 | ${D}/${ARCH_LIB}/perllocal.pod \ |
90 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 47 | > ${D}/${POD_DIR}/${P}.pod |
91 | fi |
| 48 | |
92 | |
|
|
93 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
|
|
94 | then |
|
|
95 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
96 | sed -e "s:${D}::g" \ |
|
|
97 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
98 | touch ${D}/${POD_DIR}/${P}.pod.site |
|
|
99 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 49 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
100 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
|
|
101 | fi |
| 50 | |
102 | |
|
|
103 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
|
|
104 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
105 | done |
|
|
106 | |
| 51 | dodoc Change* MANIFEST README* ${mydoc} |
107 | for doc in Change* MANIFEST* README*; do |
|
|
108 | [ -s "$doc" ] && dodoc $doc |
|
|
109 | done |
|
|
110 | dodoc ${mydoc} |
| 52 | } |
111 | } |
|
|
112 | |
|
|
113 | |
|
|
114 | perl-module_pkg_setup() { |
|
|
115 | |
|
|
116 | perlinfo |
|
|
117 | } |
|
|
118 | |
|
|
119 | |
|
|
120 | perl-module_pkg_preinst() { |
|
|
121 | |
|
|
122 | perlinfo |
|
|
123 | } |
|
|
124 | |
|
|
125 | perl-module_pkg_postinst() { |
|
|
126 | |
|
|
127 | updatepod |
|
|
128 | } |
|
|
129 | |
|
|
130 | perl-module_pkg_prerm() { |
|
|
131 | |
|
|
132 | updatepod |
|
|
133 | } |
|
|
134 | |
|
|
135 | perl-module_pkg_postrm() { |
|
|
136 | |
|
|
137 | updatepod |
|
|
138 | } |
|
|
139 | |
|
|
140 | perlinfo() { |
|
|
141 | |
|
|
142 | if [ -f /usr/bin/perl ] |
|
|
143 | then |
|
|
144 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
145 | fi |
|
|
146 | eval `perl '-V:version'` |
|
|
147 | PERL_VERSION=${version} |
|
|
148 | eval `perl '-V:installsitearch'` |
|
|
149 | SITE_ARCH=${installsitearch} |
|
|
150 | eval `perl '-V:installarchlib'` |
|
|
151 | ARCH_LIB=${installarchlib} |
|
|
152 | eval `perl '-V:installarchlib'` |
|
|
153 | ARCH_LIB=${installarchlib} |
|
|
154 | eval `perl '-V:installsitearch'` |
|
|
155 | SITE_LIB=${installsitearch} |
|
|
156 | } |
|
|
157 | |
|
|
158 | updatepod() { |
|
|
159 | perlinfo |
|
|
160 | |
|
|
161 | if [ -d "${POD_DIR}" ] |
|
|
162 | then |
|
|
163 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
164 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
165 | rm -f ${FILE} |
|
|
166 | done |
|
|
167 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
168 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
169 | rm -f ${FILE} |
|
|
170 | done |
|
|
171 | fi |
|
|
172 | } |