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