| 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.53 2003/10/19 11:50:36 lanius 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.20 2002/08/16 12:20:09 mcummings 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 | inherit perl-post |
11 | INHERITED="${INHERITED} ${ECLASS}" |
| 10 | |
12 | |
| 11 | ECLASS=perl-module |
13 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 12 | INHERITED="$INHERITED $ECLASS" |
14 | src_compile src_install src_test \ |
|
|
15 | perlinfo updatepod |
| 13 | |
16 | |
| 14 | EXPORT_FUNCTIONS src_compile src_install src_test |
17 | eval `perl '-V:version'` |
|
|
18 | newdepend ">=dev-lang/perl-5.8.0-r12" |
|
|
19 | SRC_PREP="no" |
| 15 | |
20 | |
| 16 | DEPEND=">=sys-devel/perl-5" |
21 | SITE_LIB="" |
|
|
22 | ARCH_LIB="" |
|
|
23 | POD_DIR="" |
| 17 | |
24 | |
| 18 | SRC_PREP="no" |
25 | # handling of DESTDIR changed in makemaker 6.11 |
|
|
26 | MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION gt "6.11" )'` |
| 19 | |
27 | |
| 20 | perl-module_src_prep() { |
28 | perl-module_src_prep() { |
| 21 | |
29 | |
| 22 | SRC_PREP="yes" |
30 | SRC_PREP="yes" |
| 23 | eval `perl '-V:version'` |
31 | if [ "${style}" == "builder" ]; then |
| 24 | if [ ${version} == '5.6.1' ]; |
32 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
| 25 | then |
|
|
| 26 | perl Makefile.PL ${myconf} |
|
|
| 27 | else |
33 | else |
|
|
34 | if [ "${MMSIXELEVEN}" ]; then |
| 28 | perl Makefile.PL ${myconf} \ |
35 | perl Makefile.PL ${myconf} \ |
| 29 | PREFIX=${D}/usr |
36 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
37 | else |
|
|
38 | perl Makefile.PL ${myconf} \ |
|
|
39 | PREFIX=${D}/usr INSTALLDIRS=vendor |
|
|
40 | fi |
| 30 | fi |
41 | fi |
|
|
42 | |
| 31 | } |
43 | } |
| 32 | |
44 | |
| 33 | perl-module_src_compile() { |
45 | perl-module_src_compile() { |
| 34 | |
46 | |
| 35 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
47 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
48 | if [ "${style}" != "builder" ]; then |
| 36 | make ${mymake} || die "compilation failed" |
49 | make ${mymake} || die "compilation failed" |
|
|
50 | fi |
|
|
51 | |
| 37 | } |
52 | } |
| 38 | |
53 | |
| 39 | perl-module_src_test() { |
54 | perl-module_src_test() { |
|
|
55 | if [ "${style}" == "builder" ]; then |
|
|
56 | perl ${S}/Build test |
|
|
57 | else |
| 40 | make test |
58 | make test |
|
|
59 | fi |
|
|
60 | |
| 41 | } |
61 | } |
| 42 | |
62 | |
| 43 | perl-module_src_install() { |
63 | perl-module_src_install() { |
| 44 | |
64 | |
| 45 | perl-post_perlinfo |
65 | perlinfo |
| 46 | dodir ${POD_DIR} |
66 | dodir ${POD_DIR} |
| 47 | |
67 | |
| 48 | test -z ${mytargets} && mytargets="install" |
68 | test -z ${mytargets} && mytargets="install" |
| 49 | |
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 |
| 50 | make \ |
80 | make \ |
| 51 | PREFIX=${D}/usr \ |
81 | PREFIX=${D}/usr \ |
| 52 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
82 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
| 53 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
83 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
| 54 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
84 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
| 55 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
85 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
| 56 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
86 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
| 57 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
87 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
| 58 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
88 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
| 59 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
89 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
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 \ |
| 60 | ${myinst} \ |
101 | ${myinst} \ |
| 61 | ${mytargets} || die |
102 | ${mytargets} || die |
| 62 | |
103 | fi |
|
|
104 | fi |
| 63 | |
105 | |
| 64 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
106 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 65 | then |
107 | then |
|
|
108 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
109 | sed -e "s:${D}::g" \ |
| 66 | sed -e "s:${D}::g" ${D}${ARCH_LIB}/perllocal.pod > ${D}/${POD_DIR}/${P}.pod |
110 | ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
111 | touch ${D}/${POD_DIR}/${P}.pod.arch |
| 67 | cp ${D}/${POD_DIR}/${P}.pod ${D}/${POD_DIR}/${P}.pod.arch |
112 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 68 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
113 | rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 69 | fi |
114 | fi |
| 70 | |
115 | |
| 71 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
116 | if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 72 | then |
117 | then |
|
|
118 | touch ${D}/${POD_DIR}/${P}.pod |
|
|
119 | sed -e "s:${D}::g" \ |
| 73 | sed -e "s:${D}::g" ${D}${SITE_LIB}/perllocal.pod > ${D}/${POD_DIR}/${P}.pod |
120 | ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
|
|
121 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 74 | cp ${D}/${POD_DIR}/${P}.pod ${D}/${POD_DIR}/${P}.pod.site |
122 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 75 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
123 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 76 | fi |
124 | fi |
| 77 | |
125 | |
|
|
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 | |
| 78 | dodoc Change* MANIFEST* README* ${mydoc} |
130 | for doc in Change* MANIFEST* README*; do |
|
|
131 | [ -s "$doc" ] && dodoc $doc |
|
|
132 | done |
|
|
133 | dodoc ${mydoc} |
| 79 | } |
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 | } |