blob: bf65c078de704d1049250e306a39290f7a52b6e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.59 2004/04/02 10:54:58 mcummings Exp $
#
# Author: Seemant Kulleen <seemant@gentoo.org>
# Maintained by the Perl herd <perl@gentoo.org>
#
# The perl-module eclass is designed to allow easier installation of perl
# modules, and their incorporation into the Gentoo Linux system.
ECLASS=perl-module
INHERITED="${INHERITED} ${ECLASS}"
EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \
src_compile src_install src_test \
perlinfo updatepod
DEPEND="dev-lang/perl"
SRC_PREP="no"
SRC_TEST="skip"
PERL_VERSION=""
SITE_ARCH=""
SITE_LIB=""
ARCH_LIB=""
POD_DIR=""
MMSIXELEVEN=""
perl-module_src_prep() {
SRC_PREP="yes"
if [ "${style}" == "builder" ]; then
perl ${S}/Build.PL installdirs=vendor destdir=${D}
else
if [ "${MMSIXELEVEN}" ]; then
perl Makefile.PL ${myconf} \
PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D}
else
perl Makefile.PL ${myconf} \
PREFIX=${D}/usr INSTALLDIRS=vendor
fi
fi
}
perl-module_src_compile() {
[ "${SRC_PREP}" != "yes" ] && perl-module_src_prep
if [ "${style}" != "builder" ]; then
make ${mymake} || die "compilation failed"
fi
if [ "${SRC_TEST}" == "do" ]; then
perl-module_src_test || die "test failed"
SRC_TEST="done"
fi
}
perl-module_src_test() {
if [ "${style}" == "builder" ]; then
perl ${S}/Build test
else
make test
fi
}
perl-module_src_install() {
perlinfo
dodir ${POD_DIR}
test -z ${mytargets} && mytargets="install"
if [ "${style}" == "builder" ]; then
perl ${S}/Build install
else
if [ "${MMSIXELEVEN}" ]; then
make ${myinst} ${mytargets} || die
else
make \
PREFIX=${D}/usr \
INSTALLMAN1DIR=${D}/usr/share/man/man1 \
INSTALLMAN2DIR=${D}/usr/share/man/man2 \
INSTALLMAN3DIR=${D}/usr/share/man/man3 \
INSTALLMAN4DIR=${D}/usr/share/man/man4 \
INSTALLMAN5DIR=${D}/usr/share/man/man5 \
INSTALLMAN6DIR=${D}/usr/share/man/man6 \
INSTALLMAN7DIR=${D}/usr/share/man/man7 \
INSTALLMAN8DIR=${D}/usr/share/man/man8 \
INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \
INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \
INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \
INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \
INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \
INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \
INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \
INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \
INSTALLVENDORMAN3DIR=${D}/usr/share/man/man3 \
INSTALLSITEARCH=${D}/${SITE_ARCH} \
INSTALLSCRIPT=${D}/usr/bin \
${myinst} \
${mytargets} || die
fi
fi
if [ -f ${D}${ARCH_LIB}/perllocal.pod ];
then
touch ${D}/${POD_DIR}/${P}.pod
sed -e "s:${D}::g" \
${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod
touch ${D}/${POD_DIR}/${P}.pod.arch
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch
rm -f ${D}/${ARCH_LIB}/perllocal.pod
fi
if [ -f ${D}${SITE_LIB}/perllocal.pod ];
then
touch ${D}/${POD_DIR}/${P}.pod
sed -e "s:${D}::g" \
${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod
touch ${D}/${POD_DIR}/${P}.pod.site
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site
rm -f ${D}/${SITE_LIB}/perllocal.pod
fi
for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do
sed -i -e "s:${D}:/:g" ${FILE}
done
for doc in Change* MANIFEST* README*; do
[ -s "$doc" ] && dodoc $doc
done
dodoc ${mydoc}
}
perl-module_pkg_setup() {
perlinfo
}
perl-module_pkg_preinst() {
perlinfo
}
perl-module_pkg_postinst() {
updatepod
}
perl-module_pkg_prerm() {
updatepod
}
perl-module_pkg_postrm() {
updatepod
}
perlinfo() {
if [ -f /usr/bin/perl ]
then
POD_DIR="/usr/share/perl/gentoo-pods/${version}"
fi
eval `perl '-V:version'`
PERL_VERSION=${version}
eval `perl '-V:installsitearch'`
SITE_ARCH=${installsitearch}
eval `perl '-V:installarchlib'`
ARCH_LIB=${installarchlib}
eval `perl '-V:installarchlib'`
ARCH_LIB=${installarchlib}
eval `perl '-V:installsitearch'`
SITE_LIB=${installsitearch}
# handling of DESTDIR changed in makemaker 6.11
MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION ge "6.11" )'`
}
updatepod() {
perlinfo
if [ -d "${POD_DIR}" ]
then
for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do
cat ${FILE} >> ${ARCH_LIB}/perllocal.pod
rm -f ${FILE}
done
for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do
cat ${FILE} >> ${SITE_LIB}/perllocal.pod
rm -f ${FILE}
done
fi
}
|