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