| 1 |
vapier |
1.33 |
# Copyright 1999-2003 Gentoo Technologies, Inc.
|
| 2 |
vapier |
1.30 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
mcummings |
1.49 |
# $Header: /home/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.48 2003/07/25 21:08:44 rac Exp $
|
| 4 |
vapier |
1.33 |
#
|
| 5 |
seemant |
1.1 |
# Author: Seemant Kulleen <seemant@gentoo.org>
|
| 6 |
vapier |
1.33 |
#
|
| 7 |
seemant |
1.1 |
# The perl-module eclass is designed to allow easier installation of perl
|
| 8 |
|
|
# modules, and their incorporation into the Gentoo Linux system.
|
| 9 |
seemant |
1.3 |
|
| 10 |
danarmak |
1.14 |
ECLASS=perl-module
|
| 11 |
seemant |
1.35 |
INHERITED="${INHERITED} ${ECLASS}"
|
| 12 |
danarmak |
1.13 |
|
| 13 |
seemant |
1.35 |
EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm \
|
| 14 |
seemant |
1.37 |
src_compile src_install src_test \
|
| 15 |
|
|
perlinfo updatepod
|
| 16 |
seemant |
1.1 |
|
| 17 |
mcummings |
1.25 |
eval `perl '-V:version'`
|
| 18 |
rac |
1.48 |
newdepend ">=dev-lang/perl-5.8.0-r12"
|
| 19 |
azarah |
1.11 |
SRC_PREP="no"
|
| 20 |
|
|
|
| 21 |
seemant |
1.35 |
SITE_LIB=""
|
| 22 |
|
|
ARCH_LIB=""
|
| 23 |
|
|
POD_DIR=""
|
| 24 |
|
|
|
| 25 |
aliz |
1.15 |
perl-module_src_prep() {
|
| 26 |
azarah |
1.11 |
|
| 27 |
|
|
SRC_PREP="yes"
|
| 28 |
mcummings |
1.43 |
if [ "${style}" == "builder" ]; then
|
| 29 |
rac |
1.48 |
perl ${S}/Build.PL installdirs=vendor destdir=${D}
|
| 30 |
mcummings |
1.43 |
else
|
| 31 |
mcummings |
1.49 |
perl Makefile.PL ${myconf} \
|
| 32 |
|
|
PREFIX=${D}/usr INSTALLDIRS=vendor
|
| 33 |
mcummings |
1.43 |
fi
|
| 34 |
|
|
|
| 35 |
azarah |
1.11 |
}
|
| 36 |
|
|
|
| 37 |
aliz |
1.15 |
perl-module_src_compile() {
|
| 38 |
seemant |
1.6 |
|
| 39 |
aliz |
1.15 |
[ "${SRC_PREP}" != "yes" ] && perl-module_src_prep
|
| 40 |
mcummings |
1.43 |
if [ "${style}" != "builder" ]; then
|
| 41 |
|
|
make ${mymake} || die "compilation failed"
|
| 42 |
|
|
fi
|
| 43 |
|
|
|
| 44 |
seemant |
1.8 |
}
|
| 45 |
|
|
|
| 46 |
aliz |
1.15 |
perl-module_src_test() {
|
| 47 |
mcummings |
1.43 |
if [ "${style}" == "builder" ]; then
|
| 48 |
|
|
perl ${S}/Build test
|
| 49 |
|
|
else
|
| 50 |
|
|
make test
|
| 51 |
|
|
fi
|
| 52 |
|
|
|
| 53 |
seemant |
1.1 |
}
|
| 54 |
|
|
|
| 55 |
aliz |
1.15 |
perl-module_src_install() {
|
| 56 |
seemant |
1.12 |
|
| 57 |
seemant |
1.35 |
perlinfo
|
| 58 |
seemant |
1.1 |
dodir ${POD_DIR}
|
| 59 |
|
|
|
| 60 |
seemant |
1.9 |
test -z ${mytargets} && mytargets="install"
|
| 61 |
mcummings |
1.31 |
eval `perl '-V:installsitearch'`
|
| 62 |
|
|
SITE_ARCH=${installsitearch}
|
| 63 |
|
|
eval `perl '-V:installarchlib'`
|
| 64 |
|
|
ARCH_LIB=${installarchlib}
|
| 65 |
|
|
|
| 66 |
mcummings |
1.43 |
if [ "${style}" == "builder" ]; then
|
| 67 |
|
|
perl ${S}/Build install
|
| 68 |
|
|
else
|
| 69 |
seemant |
1.1 |
make \
|
| 70 |
seemant |
1.27 |
PREFIX=${D}/usr \
|
| 71 |
|
|
INSTALLMAN1DIR=${D}/usr/share/man/man1 \
|
| 72 |
|
|
INSTALLMAN2DIR=${D}/usr/share/man/man2 \
|
| 73 |
|
|
INSTALLMAN3DIR=${D}/usr/share/man/man3 \
|
| 74 |
|
|
INSTALLMAN4DIR=${D}/usr/share/man/man4 \
|
| 75 |
|
|
INSTALLMAN5DIR=${D}/usr/share/man/man5 \
|
| 76 |
|
|
INSTALLMAN6DIR=${D}/usr/share/man/man6 \
|
| 77 |
|
|
INSTALLMAN7DIR=${D}/usr/share/man/man7 \
|
| 78 |
|
|
INSTALLMAN8DIR=${D}/usr/share/man/man8 \
|
| 79 |
mcummings |
1.31 |
INSTALLSITEMAN1DIR=${D}/usr/share/man/man1 \
|
| 80 |
|
|
INSTALLSITEMAN2DIR=${D}/usr/share/man/man2 \
|
| 81 |
|
|
INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \
|
| 82 |
|
|
INSTALLSITEMAN4DIR=${D}/usr/share/man/man4 \
|
| 83 |
|
|
INSTALLSITEMAN5DIR=${D}/usr/share/man/man5 \
|
| 84 |
|
|
INSTALLSITEMAN6DIR=${D}/usr/share/man/man6 \
|
| 85 |
|
|
INSTALLSITEMAN7DIR=${D}/usr/share/man/man7 \
|
| 86 |
|
|
INSTALLSITEMAN8DIR=${D}/usr/share/man/man8 \
|
| 87 |
|
|
INSTALLSITEARCH=${D}/${SITE_ARCH} \
|
| 88 |
|
|
INSTALLSCRIPT=${D}/usr/bin \
|
| 89 |
seemant |
1.27 |
${myinst} \
|
| 90 |
|
|
${mytargets} || die
|
| 91 |
mcummings |
1.43 |
fi
|
| 92 |
mcummings |
1.20 |
|
| 93 |
|
|
if [ -f ${D}${ARCH_LIB}/perllocal.pod ];
|
| 94 |
|
|
then
|
| 95 |
seemant |
1.27 |
touch ${D}/${POD_DIR}/${P}.pod
|
| 96 |
|
|
sed -e "s:${D}::g" \
|
| 97 |
|
|
${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod
|
| 98 |
|
|
touch ${D}/${POD_DIR}/${P}.pod.arch
|
| 99 |
|
|
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch
|
| 100 |
|
|
rm -f ${D}/${ARCH_LIB}/perllocal.pod
|
| 101 |
mcummings |
1.20 |
fi
|
| 102 |
seemant |
1.1 |
|
| 103 |
mcummings |
1.20 |
if [ -f ${D}${SITE_LIB}/perllocal.pod ];
|
| 104 |
|
|
then
|
| 105 |
seemant |
1.27 |
touch ${D}/${POD_DIR}/${P}.pod
|
| 106 |
|
|
sed -e "s:${D}::g" \
|
| 107 |
|
|
${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod
|
| 108 |
|
|
touch ${D}/${POD_DIR}/${P}.pod.site
|
| 109 |
|
|
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site
|
| 110 |
|
|
rm -f ${D}/${SITE_LIB}/perllocal.pod
|
| 111 |
mcummings |
1.20 |
fi
|
| 112 |
mcummings |
1.38 |
|
| 113 |
|
|
for FILE in `find ${D} -type f -name "*.html" -o -name ".packlist"`; do
|
| 114 |
mcummings |
1.42 |
sed -i -e "s:${D}:/:g" ${FILE}
|
| 115 |
mcummings |
1.38 |
done
|
| 116 |
seemant |
1.1 |
|
| 117 |
seemant |
1.9 |
dodoc Change* MANIFEST* README* ${mydoc}
|
| 118 |
seemant |
1.35 |
}
|
| 119 |
|
|
|
| 120 |
|
|
|
| 121 |
|
|
perl-module_pkg_setup() {
|
| 122 |
|
|
|
| 123 |
|
|
perlinfo
|
| 124 |
|
|
}
|
| 125 |
|
|
|
| 126 |
|
|
|
| 127 |
|
|
perl-module_pkg_preinst() {
|
| 128 |
|
|
|
| 129 |
|
|
perlinfo
|
| 130 |
|
|
}
|
| 131 |
|
|
|
| 132 |
|
|
perl-module_pkg_postinst() {
|
| 133 |
|
|
|
| 134 |
|
|
updatepod
|
| 135 |
|
|
}
|
| 136 |
|
|
|
| 137 |
|
|
perl-module_pkg_prerm() {
|
| 138 |
|
|
|
| 139 |
|
|
updatepod
|
| 140 |
|
|
}
|
| 141 |
|
|
|
| 142 |
|
|
perl-module_pkg_postrm() {
|
| 143 |
|
|
|
| 144 |
|
|
updatepod
|
| 145 |
|
|
}
|
| 146 |
|
|
|
| 147 |
|
|
perlinfo() {
|
| 148 |
|
|
|
| 149 |
|
|
if [ -f /usr/bin/perl ]
|
| 150 |
|
|
then
|
| 151 |
|
|
eval `perl '-V:installarchlib'`
|
| 152 |
|
|
eval `perl '-V:installsitearch'`
|
| 153 |
|
|
ARCH_LIB=${installarchlib}
|
| 154 |
|
|
SITE_LIB=${installsitearch}
|
| 155 |
|
|
|
| 156 |
|
|
eval `perl '-V:version'`
|
| 157 |
|
|
POD_DIR="/usr/share/perl/gentoo-pods/${version}"
|
| 158 |
|
|
fi
|
| 159 |
|
|
|
| 160 |
|
|
}
|
| 161 |
|
|
|
| 162 |
|
|
updatepod() {
|
| 163 |
|
|
perlinfo
|
| 164 |
|
|
|
| 165 |
|
|
if [ -d "${POD_DIR}" ]
|
| 166 |
|
|
then
|
| 167 |
|
|
for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do
|
| 168 |
|
|
cat ${FILE} >> ${ARCH_LIB}/perllocal.pod
|
| 169 |
|
|
rm -f ${FILE}
|
| 170 |
|
|
done
|
| 171 |
|
|
for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do
|
| 172 |
|
|
cat ${FILE} >> ${SITE_LIB}/perllocal.pod
|
| 173 |
|
|
rm -f ${FILE}
|
| 174 |
|
|
done
|
| 175 |
|
|
fi
|
| 176 |
seemant |
1.1 |
}
|