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