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