| 1 |
# Copyright 1999-2004 Gentoo Technologies, Inc.
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /home/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.61 2004/05/10 21:10:50 rac Exp $
|
| 4 |
#
|
| 5 |
# Author: Seemant Kulleen <seemant@gentoo.org>
|
| 6 |
# Maintained by the Perl herd <perl@gentoo.org>
|
| 7 |
#
|
| 8 |
# The perl-module eclass is designed to allow easier installation of perl
|
| 9 |
# modules, and their incorporation into the Gentoo Linux system.
|
| 10 |
|
| 11 |
ECLASS=perl-module
|
| 12 |
INHERITED="${INHERITED} ${ECLASS}"
|
| 13 |
|
| 14 |
EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \
|
| 15 |
src_compile src_install src_test \
|
| 16 |
perlinfo updatepod
|
| 17 |
|
| 18 |
# 2004.05.10 rac
|
| 19 |
# block on makemaker versions earlier than that in the 5.8.2 core. in
|
| 20 |
# actuality, this should be handled in the perl ebuild, so every perl
|
| 21 |
# ebuild should block versions of MakeMaker older than the one it
|
| 22 |
# carries. in the meantime, since we have dumped support for MakeMaker
|
| 23 |
# <6.11 and the associated broken DESTDIR handling, block here to save
|
| 24 |
# people from sandbox trouble.
|
| 25 |
#
|
| 26 |
# 2004.05.25 rac
|
| 27 |
# for the same reasons, make the perl dep >=5.8.2 to get everybody
|
| 28 |
# with 5.8.0 and its 6.03 makemaker up to a version that can
|
| 29 |
# understand DESTDIR
|
| 30 |
|
| 31 |
DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17"
|
| 32 |
SRC_PREP="no"
|
| 33 |
SRC_TEST="skip"
|
| 34 |
|
| 35 |
PERL_VERSION=""
|
| 36 |
SITE_ARCH=""
|
| 37 |
SITE_LIB=""
|
| 38 |
ARCH_LIB=""
|
| 39 |
POD_DIR=""
|
| 40 |
|
| 41 |
perl-module_src_prep() {
|
| 42 |
|
| 43 |
perlinfo
|
| 44 |
|
| 45 |
SRC_PREP="yes"
|
| 46 |
if [ "${style}" == "builder" ]; then
|
| 47 |
perl ${S}/Build.PL installdirs=vendor destdir=${D}
|
| 48 |
else
|
| 49 |
perl Makefile.PL ${myconf} \
|
| 50 |
PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D}
|
| 51 |
fi
|
| 52 |
}
|
| 53 |
|
| 54 |
perl-module_src_compile() {
|
| 55 |
|
| 56 |
[ "${SRC_PREP}" != "yes" ] && perl-module_src_prep
|
| 57 |
if [ "${style}" != "builder" ]; then
|
| 58 |
make ${mymake} || die "compilation failed"
|
| 59 |
fi
|
| 60 |
|
| 61 |
if [ "${SRC_TEST}" == "do" ]; then
|
| 62 |
perl-module_src_test || die "test failed"
|
| 63 |
SRC_TEST="done"
|
| 64 |
fi
|
| 65 |
}
|
| 66 |
|
| 67 |
perl-module_src_test() {
|
| 68 |
if [ "${style}" == "builder" ]; then
|
| 69 |
perl ${S}/Build test
|
| 70 |
else
|
| 71 |
make test
|
| 72 |
fi
|
| 73 |
}
|
| 74 |
|
| 75 |
perl-module_src_install() {
|
| 76 |
|
| 77 |
perlinfo
|
| 78 |
dodir ${POD_DIR}
|
| 79 |
|
| 80 |
test -z ${mytargets} && mytargets="install"
|
| 81 |
|
| 82 |
if [ "${style}" == "builder" ]; then
|
| 83 |
perl ${S}/Build install
|
| 84 |
else
|
| 85 |
make ${myinst} ${mytargets} || die
|
| 86 |
fi
|
| 87 |
|
| 88 |
if [ -f ${D}${ARCH_LIB}/perllocal.pod ];
|
| 89 |
then
|
| 90 |
touch ${D}/${POD_DIR}/${P}.pod
|
| 91 |
sed -e "s:${D}::g" \
|
| 92 |
${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod
|
| 93 |
touch ${D}/${POD_DIR}/${P}.pod.arch
|
| 94 |
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch
|
| 95 |
rm -f ${D}/${ARCH_LIB}/perllocal.pod
|
| 96 |
fi
|
| 97 |
|
| 98 |
if [ -f ${D}${SITE_LIB}/perllocal.pod ];
|
| 99 |
then
|
| 100 |
touch ${D}/${POD_DIR}/${P}.pod
|
| 101 |
sed -e "s:${D}::g" \
|
| 102 |
${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod
|
| 103 |
touch ${D}/${POD_DIR}/${P}.pod.site
|
| 104 |
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site
|
| 105 |
rm -f ${D}/${SITE_LIB}/perllocal.pod
|
| 106 |
fi
|
| 107 |
|
| 108 |
for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do
|
| 109 |
sed -i -e "s:${D}:/:g" ${FILE}
|
| 110 |
done
|
| 111 |
|
| 112 |
for doc in Change* MANIFEST* README*; do
|
| 113 |
[ -s "$doc" ] && dodoc $doc
|
| 114 |
done
|
| 115 |
dodoc ${mydoc}
|
| 116 |
}
|
| 117 |
|
| 118 |
|
| 119 |
perl-module_pkg_setup() {
|
| 120 |
|
| 121 |
perlinfo
|
| 122 |
}
|
| 123 |
|
| 124 |
|
| 125 |
perl-module_pkg_preinst() {
|
| 126 |
|
| 127 |
perlinfo
|
| 128 |
}
|
| 129 |
|
| 130 |
perl-module_pkg_postinst() {
|
| 131 |
|
| 132 |
updatepod
|
| 133 |
}
|
| 134 |
|
| 135 |
perl-module_pkg_prerm() {
|
| 136 |
|
| 137 |
updatepod
|
| 138 |
}
|
| 139 |
|
| 140 |
perl-module_pkg_postrm() {
|
| 141 |
|
| 142 |
updatepod
|
| 143 |
}
|
| 144 |
|
| 145 |
perlinfo() {
|
| 146 |
|
| 147 |
if [ -f /usr/bin/perl ]
|
| 148 |
then
|
| 149 |
POD_DIR="/usr/share/perl/gentoo-pods/${version}"
|
| 150 |
fi
|
| 151 |
eval `perl '-V:version'`
|
| 152 |
PERL_VERSION=${version}
|
| 153 |
eval `perl '-V:installsitearch'`
|
| 154 |
SITE_ARCH=${installsitearch}
|
| 155 |
eval `perl '-V:installarchlib'`
|
| 156 |
ARCH_LIB=${installarchlib}
|
| 157 |
eval `perl '-V:installarchlib'`
|
| 158 |
ARCH_LIB=${installarchlib}
|
| 159 |
eval `perl '-V:installsitearch'`
|
| 160 |
SITE_LIB=${installsitearch}
|
| 161 |
}
|
| 162 |
|
| 163 |
updatepod() {
|
| 164 |
perlinfo
|
| 165 |
|
| 166 |
if [ -d "${POD_DIR}" ]
|
| 167 |
then
|
| 168 |
for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do
|
| 169 |
cat ${FILE} >> ${ARCH_LIB}/perllocal.pod
|
| 170 |
rm -f ${FILE}
|
| 171 |
done
|
| 172 |
for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do
|
| 173 |
cat ${FILE} >> ${SITE_LIB}/perllocal.pod
|
| 174 |
rm -f ${FILE}
|
| 175 |
done
|
| 176 |
fi
|
| 177 |
}
|