blob: 4732bcce961d327e60c36ba31fda9e6ce5fc4703 (
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
|
# Copyright 1999-2003 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.34 2003/03/11 21:26:32 seemant Exp $
#
# Author: Seemant Kulleen <seemant@gentoo.org>
#
# The perl-module eclass is designed to allow easier installation of perl
# modules, and their incorporation into the Gentoo Linux system.
#first inherit the pkg_postinst() and pkg_postrm() functions
inherit perl-post
ECLASS=perl-module
INHERITED="$INHERITED $ECLASS"
EXPORT_FUNCTIONS src_compile src_install src_test
eval `perl '-V:version'`
DEPEND="dev-lang/perl
>=dev-perl/ExtUtils-MakeMaker-6.05-r1
${DEPEND}"
SRC_PREP="no"
perl-module_src_prep() {
SRC_PREP="yes"
perl Makefile.PL ${myconf} \
PREFIX=${D}/usr
}
perl-module_src_compile() {
[ "${SRC_PREP}" != "yes" ] && perl-module_src_prep
make ${mymake} || die "compilation failed"
}
perl-module_src_test() {
make test
}
perl-module_src_install() {
perl-post_perlinfo
dodir ${POD_DIR}
test -z ${mytargets} && mytargets="install"
eval `perl '-V:installsitearch'`
SITE_ARCH=${installsitearch}
eval `perl '-V:installarchlib'`
ARCH_LIB=${installarchlib}
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 \
INSTALLSITEARCH=${D}/${SITE_ARCH} \
INSTALLSCRIPT=${D}/usr/bin \
${myinst} \
${mytargets} || die
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
dodoc Change* MANIFEST* README* ${mydoc}
}
|