blob: bd43fc331e4852185f809a105382c109754a27f0 (
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
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# Author: Seemant Kulleen <seemant@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/eclass/perl-post.eclass,v 1.5 2002/07/12 15:24:36 danarmak Exp $
# The perl-post eclass is designed to allow the ${installarchdir}/perllocal.pod
# file to be updated cleanly after perl and/or perl-modules are installed
# or removed.
ECLASS=perl
INHERITED="$INHERITED $ECLASS"
EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \
perlinfo updatepod
ARCH_LIB=""
POD_DIR=""
perl_pkg_setup() {
perlinfo
}
perl_pkg_preinst() {
perlinfo
}
perl_pkg_postinst() {
updatepod
}
perl_pkg_prerm() {
updatepod
}
perl_pkg_postrm() {
updatepod
}
perl_perlinfo() {
if [ -f /usr/bin/perl ]
then
eval `perl '-V:installarchlib'`
ARCH_LIB=${installarchlib}
eval `perl '-V:version'`
POD_DIR="/usr/share/perl/gentoo-pods/${version}"
fi
}
perl_updatepod() {
perlinfo
if [ -d "${POD_DIR}" ]
then
cat ${POD_DIR}/*.pod > ${ARCH_LIB}/perllocal.pod
fi
}
|