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