| 1 |
seemant |
1.1 |
# Copyright 2002 Gentoo Technologies, Inc.
|
| 2 |
|
|
# Distributed under the terms of the GNU General Public License, v2
|
| 3 |
|
|
# Author: Seemant Kulleen <seemant@gentoo.org>
|
| 4 |
mcummings |
1.19 |
# $Header: /home/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.18 2002/08/07 01:49:17 mcummings Exp $
|
| 5 |
seemant |
1.1 |
# The perl-module eclass is designed to allow easier installation of perl
|
| 6 |
|
|
# modules, and their incorporation into the Gentoo Linux system.
|
| 7 |
seemant |
1.3 |
|
| 8 |
|
|
#first inherit the pkg_postinst() and pkg_postrm() functions
|
| 9 |
|
|
inherit perl-post
|
| 10 |
|
|
|
| 11 |
danarmak |
1.14 |
ECLASS=perl-module
|
| 12 |
danarmak |
1.13 |
INHERITED="$INHERITED $ECLASS"
|
| 13 |
|
|
|
| 14 |
seemant |
1.8 |
EXPORT_FUNCTIONS src_compile src_install src_test
|
| 15 |
seemant |
1.1 |
|
| 16 |
mcummings |
1.19 |
DEPEND=">=sys-devel/perl-5"
|
| 17 |
seemant |
1.1 |
|
| 18 |
azarah |
1.11 |
SRC_PREP="no"
|
| 19 |
|
|
|
| 20 |
aliz |
1.15 |
perl-module_src_prep() {
|
| 21 |
azarah |
1.11 |
|
| 22 |
|
|
SRC_PREP="yes"
|
| 23 |
mcummings |
1.18 |
eval `perl '-V:version'`
|
| 24 |
|
|
if [ ${version} == '5.6.1' ];
|
| 25 |
|
|
then
|
| 26 |
|
|
perl Makefile.PL ${myconf}
|
| 27 |
|
|
else
|
| 28 |
|
|
perl Makefile.PL ${myconf} \
|
| 29 |
|
|
PREFIX=${D}/usr
|
| 30 |
|
|
fi
|
| 31 |
azarah |
1.11 |
}
|
| 32 |
|
|
|
| 33 |
aliz |
1.15 |
perl-module_src_compile() {
|
| 34 |
seemant |
1.6 |
|
| 35 |
aliz |
1.15 |
[ "${SRC_PREP}" != "yes" ] && perl-module_src_prep
|
| 36 |
seemant |
1.7 |
make ${mymake} || die "compilation failed"
|
| 37 |
seemant |
1.8 |
}
|
| 38 |
|
|
|
| 39 |
aliz |
1.15 |
perl-module_src_test() {
|
| 40 |
seemant |
1.9 |
make test
|
| 41 |
seemant |
1.1 |
}
|
| 42 |
|
|
|
| 43 |
aliz |
1.15 |
perl-module_src_install() {
|
| 44 |
seemant |
1.12 |
|
| 45 |
seemant |
1.16 |
perl-post_perlinfo
|
| 46 |
seemant |
1.1 |
dodir ${POD_DIR}
|
| 47 |
|
|
|
| 48 |
seemant |
1.9 |
test -z ${mytargets} && mytargets="install"
|
| 49 |
|
|
|
| 50 |
seemant |
1.1 |
make \
|
| 51 |
|
|
PREFIX=${D}/usr \
|
| 52 |
|
|
INSTALLMAN1DIR=${D}/usr/share/man/man1 \
|
| 53 |
|
|
INSTALLMAN2DIR=${D}/usr/share/man/man2 \
|
| 54 |
|
|
INSTALLMAN3DIR=${D}/usr/share/man/man3 \
|
| 55 |
|
|
INSTALLMAN4DIR=${D}/usr/share/man/man4 \
|
| 56 |
|
|
INSTALLMAN5DIR=${D}/usr/share/man/man5 \
|
| 57 |
|
|
INSTALLMAN6DIR=${D}/usr/share/man/man6 \
|
| 58 |
|
|
INSTALLMAN7DIR=${D}/usr/share/man/man7 \
|
| 59 |
|
|
INSTALLMAN8DIR=${D}/usr/share/man/man8 \
|
| 60 |
seemant |
1.7 |
${myinst} \
|
| 61 |
seemant |
1.9 |
${mytargets} || die
|
| 62 |
seemant |
1.1 |
|
| 63 |
|
|
sed -e "s:${D}::g" \
|
| 64 |
seemant |
1.5 |
${D}/${ARCH_LIB}/perllocal.pod \
|
| 65 |
seemant |
1.8 |
> ${D}/${POD_DIR}/${P}.pod
|
| 66 |
seemant |
1.1 |
|
| 67 |
seemant |
1.5 |
rm -f ${D}/${ARCH_LIB}/perllocal.pod
|
| 68 |
seemant |
1.1 |
|
| 69 |
seemant |
1.9 |
dodoc Change* MANIFEST* README* ${mydoc}
|
| 70 |
seemant |
1.1 |
}
|