summaryrefslogtreecommitdiff
blob: 065afe55cd0cd6204d7e746ccf8da3be8edf926e (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
# 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.4 2002/05/06 14:34:55 seemant 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
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
}