| 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.22 |
# $Header: /home/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.21 2002/09/09 21:51:14 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.21 |
eval `perl '-V:version'` |
| 17 |
|
|
if [ ${version} == '5.6.1' ]; |
| 18 |
|
|
then |
| 19 |
mcummings |
1.22 |
DEPEND="${DEPEND} >=sys-devel/perl-5 \ |
| 20 |
mcummings |
1.21 |
dev-perl/ExtUtils-MakeMaker" |
| 21 |
|
|
else |
| 22 |
mcummings |
1.22 |
DEPEND="${DEPEND} >=sys-devel/perl-5" |
| 23 |
mcummings |
1.21 |
fi |
| 24 |
|
|
|
| 25 |
seemant |
1.1 |
|
| 26 |
azarah |
1.11 |
SRC_PREP="no" |
| 27 |
|
|
|
| 28 |
aliz |
1.15 |
perl-module_src_prep() { |
| 29 |
azarah |
1.11 |
|
| 30 |
|
|
SRC_PREP="yes" |
| 31 |
mcummings |
1.21 |
perl Makefile.PL ${myconf} \ |
| 32 |
|
|
PREFIX=${D}/usr |
| 33 |
azarah |
1.11 |
} |
| 34 |
|
|
|
| 35 |
aliz |
1.15 |
perl-module_src_compile() { |
| 36 |
seemant |
1.6 |
|
| 37 |
aliz |
1.15 |
[ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 38 |
seemant |
1.7 |
make ${mymake} || die "compilation failed" |
| 39 |
seemant |
1.8 |
} |
| 40 |
|
|
|
| 41 |
aliz |
1.15 |
perl-module_src_test() { |
| 42 |
seemant |
1.9 |
make test |
| 43 |
seemant |
1.1 |
} |
| 44 |
|
|
|
| 45 |
aliz |
1.15 |
perl-module_src_install() { |
| 46 |
seemant |
1.12 |
|
| 47 |
seemant |
1.16 |
perl-post_perlinfo |
| 48 |
seemant |
1.1 |
dodir ${POD_DIR} |
| 49 |
|
|
|
| 50 |
seemant |
1.9 |
test -z ${mytargets} && mytargets="install" |
| 51 |
|
|
|
| 52 |
seemant |
1.1 |
make \ |
| 53 |
mcummings |
1.20 |
PREFIX=${D}/usr \ |
| 54 |
|
|
INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
| 55 |
|
|
INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
| 56 |
|
|
INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
| 57 |
|
|
INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
| 58 |
|
|
INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
| 59 |
|
|
INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
| 60 |
|
|
INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
| 61 |
|
|
INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
| 62 |
|
|
${myinst} \ |
| 63 |
|
|
${mytargets} || die |
| 64 |
|
|
|
| 65 |
|
|
|
| 66 |
|
|
if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 67 |
|
|
then |
| 68 |
mcummings |
1.21 |
touch ${D}/${POD_DIR}/${P}.pod |
| 69 |
|
|
sed -e "s:${D}::g" ${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 70 |
|
|
touch ${D}/${POD_DIR}/${P}.pod.arch |
| 71 |
|
|
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 72 |
mcummings |
1.20 |
rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 73 |
|
|
fi |
| 74 |
seemant |
1.1 |
|
| 75 |
mcummings |
1.20 |
if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 76 |
|
|
then |
| 77 |
mcummings |
1.21 |
touch ${D}/${POD_DIR}/${P}.pod |
| 78 |
|
|
sed -e "s:${D}::g" ${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 79 |
|
|
touch ${D}/${POD_DIR}/${P}.pod.site |
| 80 |
|
|
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 81 |
mcummings |
1.20 |
rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 82 |
|
|
fi |
| 83 |
seemant |
1.1 |
|
| 84 |
seemant |
1.9 |
dodoc Change* MANIFEST* README* ${mydoc} |
| 85 |
seemant |
1.1 |
} |