| 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 |
# $Header: /home/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.27 2002/10/13 11:57:31 seemant Exp $ |
| 5 |
# The perl-module eclass is designed to allow easier installation of perl |
| 6 |
# modules, and their incorporation into the Gentoo Linux system. |
| 7 |
|
| 8 |
#first inherit the pkg_postinst() and pkg_postrm() functions |
| 9 |
inherit perl-post |
| 10 |
|
| 11 |
ECLASS=perl-module |
| 12 |
INHERITED="$INHERITED $ECLASS" |
| 13 |
|
| 14 |
EXPORT_FUNCTIONS src_compile src_install src_test |
| 15 |
|
| 16 |
eval `perl '-V:version'` |
| 17 |
DEPEND="${DEPEND} |
| 18 |
>=sys-devel/perl-5" |
| 19 |
SRC_PREP="no" |
| 20 |
|
| 21 |
perl-module_src_prep() { |
| 22 |
|
| 23 |
SRC_PREP="yes" |
| 24 |
perl Makefile.PL ${myconf} \ |
| 25 |
PREFIX=${D}/usr |
| 26 |
} |
| 27 |
|
| 28 |
perl-module_src_compile() { |
| 29 |
|
| 30 |
[ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 31 |
make ${mymake} || die "compilation failed" |
| 32 |
} |
| 33 |
|
| 34 |
perl-module_src_test() { |
| 35 |
make test |
| 36 |
} |
| 37 |
|
| 38 |
perl-module_src_install() { |
| 39 |
|
| 40 |
perl-post_perlinfo |
| 41 |
dodir ${POD_DIR} |
| 42 |
|
| 43 |
test -z ${mytargets} && mytargets="install" |
| 44 |
|
| 45 |
make \ |
| 46 |
PREFIX=${D}/usr \ |
| 47 |
INSTALLMAN1DIR=${D}/usr/share/man/man1 \ |
| 48 |
INSTALLMAN2DIR=${D}/usr/share/man/man2 \ |
| 49 |
INSTALLMAN3DIR=${D}/usr/share/man/man3 \ |
| 50 |
INSTALLMAN4DIR=${D}/usr/share/man/man4 \ |
| 51 |
INSTALLMAN5DIR=${D}/usr/share/man/man5 \ |
| 52 |
INSTALLMAN6DIR=${D}/usr/share/man/man6 \ |
| 53 |
INSTALLMAN7DIR=${D}/usr/share/man/man7 \ |
| 54 |
INSTALLMAN8DIR=${D}/usr/share/man/man8 \ |
| 55 |
${myinst} \ |
| 56 |
${mytargets} || die |
| 57 |
|
| 58 |
|
| 59 |
if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 60 |
then |
| 61 |
touch ${D}/${POD_DIR}/${P}.pod |
| 62 |
sed -e "s:${D}::g" \ |
| 63 |
${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 64 |
touch ${D}/${POD_DIR}/${P}.pod.arch |
| 65 |
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 66 |
rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 67 |
fi |
| 68 |
|
| 69 |
if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 70 |
then |
| 71 |
touch ${D}/${POD_DIR}/${P}.pod |
| 72 |
sed -e "s:${D}::g" \ |
| 73 |
${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 74 |
touch ${D}/${POD_DIR}/${P}.pod.site |
| 75 |
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 76 |
rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 77 |
fi |
| 78 |
|
| 79 |
dodoc Change* MANIFEST* README* ${mydoc} |
| 80 |
} |