| 1 | # Copyright 1999-2003 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.33 2003/02/16 04:26:21 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.60 2004/05/01 22:03:12 rac Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
|
|
6 | # Maintained by the Perl herd <perl@gentoo.org> |
| 6 | # |
7 | # |
| 7 | # 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 |
| 8 | # modules, and their incorporation into the Gentoo Linux system. |
9 | # modules, and their incorporation into the Gentoo Linux system. |
| 9 | |
10 | |
| 10 | #first inherit the pkg_postinst() and pkg_postrm() functions |
11 | ECLASS=perl-module |
| 11 | inherit perl-post |
12 | INHERITED="${INHERITED} ${ECLASS}" |
| 12 | |
13 | |
| 13 | ECLASS=perl-module |
14 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \ |
| 14 | INHERITED="$INHERITED $ECLASS" |
15 | src_compile src_install src_test \ |
|
|
16 | perlinfo updatepod |
| 15 | |
17 | |
| 16 | EXPORT_FUNCTIONS src_compile src_install src_test |
|
|
| 17 | |
18 | |
| 18 | eval `perl '-V:version'` |
|
|
| 19 | DEPEND="sys-devel/perl |
19 | DEPEND="dev-lang/perl" |
| 20 | >=dev-perl/ExtUtils-MakeMaker-6.05-r1 |
|
|
| 21 | ${DEPEND}" |
|
|
| 22 | SRC_PREP="no" |
20 | SRC_PREP="no" |
|
|
21 | SRC_TEST="skip" |
|
|
22 | |
|
|
23 | PERL_VERSION="" |
|
|
24 | SITE_ARCH="" |
|
|
25 | SITE_LIB="" |
|
|
26 | ARCH_LIB="" |
|
|
27 | POD_DIR="" |
| 23 | |
28 | |
| 24 | perl-module_src_prep() { |
29 | perl-module_src_prep() { |
| 25 | |
30 | |
|
|
31 | perlinfo |
|
|
32 | |
| 26 | SRC_PREP="yes" |
33 | SRC_PREP="yes" |
|
|
34 | if [ "${style}" == "builder" ]; then |
|
|
35 | perl ${S}/Build.PL installdirs=vendor destdir=${D} |
|
|
36 | else |
| 27 | perl Makefile.PL ${myconf} \ |
37 | perl Makefile.PL ${myconf} \ |
| 28 | PREFIX=${D}/usr |
38 | PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
|
|
39 | fi |
| 29 | } |
40 | } |
| 30 | |
41 | |
| 31 | perl-module_src_compile() { |
42 | perl-module_src_compile() { |
| 32 | |
43 | |
| 33 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
44 | [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
|
|
45 | if [ "${style}" != "builder" ]; then |
| 34 | make ${mymake} || die "compilation failed" |
46 | make ${mymake} || die "compilation failed" |
|
|
47 | fi |
|
|
48 | |
|
|
49 | if [ "${SRC_TEST}" == "do" ]; then |
|
|
50 | perl-module_src_test || die "test failed" |
|
|
51 | SRC_TEST="done" |
|
|
52 | fi |
| 35 | } |
53 | } |
| 36 | |
54 | |
| 37 | perl-module_src_test() { |
55 | perl-module_src_test() { |
|
|
56 | if [ "${style}" == "builder" ]; then |
|
|
57 | perl ${S}/Build test |
|
|
58 | else |
| 38 | make test |
59 | make test |
|
|
60 | fi |
| 39 | } |
61 | } |
| 40 | |
62 | |
| 41 | perl-module_src_install() { |
63 | perl-module_src_install() { |
| 42 | |
64 | |
| 43 | perl-post_perlinfo |
65 | perlinfo |
| 44 | dodir ${POD_DIR} |
66 | dodir ${POD_DIR} |
| 45 | |
67 | |
| 46 | test -z ${mytargets} && mytargets="install" |
68 | test -z ${mytargets} && mytargets="install" |
| 47 | eval `perl '-V:installsitearch'` |
|
|
| 48 | SITE_ARCH=${installsitearch} |
|
|
| 49 | eval `perl '-V:installarchlib'` |
|
|
| 50 | ARCH_LIB=${installarchlib} |
|
|
| 51 | |
69 | |
| 52 | |
70 | if [ "${style}" == "builder" ]; then |
| 53 | make \ |
71 | perl ${S}/Build install |
| 54 | PREFIX=${D}/usr \ |
72 | else |
| 55 | INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
73 | make ${myinst} ${mytargets} || die |
| 56 | INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
74 | fi |
| 57 | INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 58 | INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 59 | INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 60 | INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 61 | INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 62 | INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 63 | INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \ |
|
|
| 64 | INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \ |
|
|
| 65 | INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ |
|
|
| 66 | INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \ |
|
|
| 67 | INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \ |
|
|
| 68 | INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \ |
|
|
| 69 | INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \ |
|
|
| 70 | INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \ |
|
|
| 71 | INSTALLSITEARCH=${D}/${SITE_ARCH} \ |
|
|
| 72 | INSTALLSCRIPT=${D}/usr/bin \ |
|
|
| 73 | ${myinst} \ |
|
|
| 74 | ${mytargets} || die |
|
|
| 75 | |
|
|
| 76 | |
75 | |
| 77 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
76 | if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 78 | then |
77 | then |
| 79 | touch ${D}/${POD_DIR}/${P}.pod |
78 | touch ${D}/${POD_DIR}/${P}.pod |
| 80 | sed -e "s:${D}::g" \ |
79 | sed -e "s:${D}::g" \ |
| … | |
… | |
| 92 | touch ${D}/${POD_DIR}/${P}.pod.site |
91 | touch ${D}/${POD_DIR}/${P}.pod.site |
| 93 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
92 | cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 94 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
93 | rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 95 | fi |
94 | fi |
| 96 | |
95 | |
|
|
96 | for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do |
|
|
97 | sed -i -e "s:${D}:/:g" ${FILE} |
|
|
98 | done |
|
|
99 | |
| 97 | dodoc Change* MANIFEST* README* ${mydoc} |
100 | for doc in Change* MANIFEST* README*; do |
|
|
101 | [ -s "$doc" ] && dodoc $doc |
|
|
102 | done |
|
|
103 | dodoc ${mydoc} |
| 98 | } |
104 | } |
|
|
105 | |
|
|
106 | |
|
|
107 | perl-module_pkg_setup() { |
|
|
108 | |
|
|
109 | perlinfo |
|
|
110 | } |
|
|
111 | |
|
|
112 | |
|
|
113 | perl-module_pkg_preinst() { |
|
|
114 | |
|
|
115 | perlinfo |
|
|
116 | } |
|
|
117 | |
|
|
118 | perl-module_pkg_postinst() { |
|
|
119 | |
|
|
120 | updatepod |
|
|
121 | } |
|
|
122 | |
|
|
123 | perl-module_pkg_prerm() { |
|
|
124 | |
|
|
125 | updatepod |
|
|
126 | } |
|
|
127 | |
|
|
128 | perl-module_pkg_postrm() { |
|
|
129 | |
|
|
130 | updatepod |
|
|
131 | } |
|
|
132 | |
|
|
133 | perlinfo() { |
|
|
134 | |
|
|
135 | if [ -f /usr/bin/perl ] |
|
|
136 | then |
|
|
137 | POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
|
|
138 | fi |
|
|
139 | eval `perl '-V:version'` |
|
|
140 | PERL_VERSION=${version} |
|
|
141 | eval `perl '-V:installsitearch'` |
|
|
142 | SITE_ARCH=${installsitearch} |
|
|
143 | eval `perl '-V:installarchlib'` |
|
|
144 | ARCH_LIB=${installarchlib} |
|
|
145 | eval `perl '-V:installarchlib'` |
|
|
146 | ARCH_LIB=${installarchlib} |
|
|
147 | eval `perl '-V:installsitearch'` |
|
|
148 | SITE_LIB=${installsitearch} |
|
|
149 | } |
|
|
150 | |
|
|
151 | updatepod() { |
|
|
152 | perlinfo |
|
|
153 | |
|
|
154 | if [ -d "${POD_DIR}" ] |
|
|
155 | then |
|
|
156 | for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
|
|
157 | cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
|
|
158 | rm -f ${FILE} |
|
|
159 | done |
|
|
160 | for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
|
|
161 | cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
|
|
162 | rm -f ${FILE} |
|
|
163 | done |
|
|
164 | fi |
|
|
165 | } |