| 1 |
# Copyright 1999-2004 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.67 2005/03/14 18:28:04 mcummings 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 |
# 2005.04.28 mcummings |
| 19 |
# Mounting problems with src_test functions has forced me to make the |
| 20 |
# compilation of perl modules honor the FEATURES maketest flag rather than what |
| 21 |
# is generally necessary. I've left a block to make sure we still need to set |
| 22 |
# the SRC_TEST="do" flag on the suspicion that otherwise we will face 10 times |
| 23 |
# as many bug reports as we have lately. |
| 24 |
|
| 25 |
# 2004.05.10 rac |
| 26 |
# block on makemaker versions earlier than that in the 5.8.2 core. in |
| 27 |
# actuality, this should be handled in the perl ebuild, so every perl |
| 28 |
# ebuild should block versions of MakeMaker older than the one it |
| 29 |
# carries. in the meantime, since we have dumped support for MakeMaker |
| 30 |
# <6.11 and the associated broken DESTDIR handling, block here to save |
| 31 |
# people from sandbox trouble. |
| 32 |
# |
| 33 |
# 2004.05.25 rac |
| 34 |
# for the same reasons, make the perl dep >=5.8.2 to get everybody |
| 35 |
# with 5.8.0 and its 6.03 makemaker up to a version that can |
| 36 |
# understand DESTDIR |
| 37 |
# |
| 38 |
# 2004.10.01 mcummings |
| 39 |
# noticed a discrepancy in how we were sed fixing references to ${D} |
| 40 |
# |
| 41 |
# 2005.03.14 mcummings |
| 42 |
# Updated eclass to include a specific function for dealing with perlocal.pods - |
| 43 |
# this should avoid the conflicts we've been running into with the introduction |
| 44 |
# of file collision features by giving us a single exportable function to deal |
| 45 |
# with the pods. Modifications to the eclass provided by Yaakov S |
| 46 |
# <yselkowitz@hotmail.com> in bug 83622 |
| 47 |
# |
| 48 |
# <later the same day> |
| 49 |
# The long awaited (by me) fix for automagically detecting and dealing |
| 50 |
# with module-build dependancies. I've chosen not to make it a default dep since |
| 51 |
# this adds overhead to people that might not otherwise need it, and instead |
| 52 |
# modified the eclass to detect the existence of a Build.PL and behave |
| 53 |
# accordingly. This will fix issues with g-cpan builds that needs module-build |
| 54 |
# support, as well as get rid of the (annoying) style=builder vars. I know of |
| 55 |
# only one module that needed to be hacked for this, Class-MethodMaker-2.05, but |
| 56 |
# that module has a bad Build.PL to begin with. Ebuilds should continue to |
| 57 |
# DEPEND on module-build<-version> as needed, but there should be no need for |
| 58 |
# the style directive any more (especially since it isn't in the eclass |
| 59 |
# anymore). Enjoy! |
| 60 |
|
| 61 |
|
| 62 |
|
| 63 |
DEPEND=">=dev-lang/perl-5.8.2 !<dev-perl/ExtUtils-MakeMaker-6.17" |
| 64 |
SRC_PREP="no" |
| 65 |
SRC_TEST="skip" |
| 66 |
|
| 67 |
PERL_VERSION="" |
| 68 |
SITE_ARCH="" |
| 69 |
SITE_LIB="" |
| 70 |
VENDOR_LIB="" |
| 71 |
VENDOR_ARCH="" |
| 72 |
ARCH_LIB="" |
| 73 |
POD_DIR="" |
| 74 |
BUILDER_VER="" |
| 75 |
|
| 76 |
perl-module_src_prep() { |
| 77 |
|
| 78 |
perlinfo |
| 79 |
|
| 80 |
export PERL_MM_USE_DEFAULT=1 |
| 81 |
|
| 82 |
|
| 83 |
SRC_PREP="yes" |
| 84 |
if [ -f ${S}/Build.PL ]; then |
| 85 |
if [ -z ${BUILDER_VER} ]; then |
| 86 |
eerror |
| 87 |
eerror "Please post a bug on http://bugs.gentoo.org assigned to" |
| 88 |
eerror "perl@gentoo.org - ${P} was added without a dependancy" |
| 89 |
eerror "on dev-perl/module-build" |
| 90 |
eerror "${BUILDER_VER}" |
| 91 |
eerror |
| 92 |
die |
| 93 |
else |
| 94 |
perl ${S}/Build.PL installdirs=vendor destdir=${D} |
| 95 |
fi |
| 96 |
else |
| 97 |
perl Makefile.PL ${myconf} \ |
| 98 |
PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} |
| 99 |
fi |
| 100 |
} |
| 101 |
|
| 102 |
perl-module_src_compile() { |
| 103 |
|
| 104 |
perlinfo |
| 105 |
[ "${SRC_PREP}" != "yes" ] && perl-module_src_prep |
| 106 |
if [ -z ${BUILDER_VER} ]; then |
| 107 |
make ${mymake} || die "compilation failed" |
| 108 |
fi |
| 109 |
|
| 110 |
} |
| 111 |
|
| 112 |
perl-module_src_test() { |
| 113 |
if [ "${SRC_TEST}" == "do" ]; then |
| 114 |
perlinfo |
| 115 |
if [ -z ${BUILDER_VER} ]; then |
| 116 |
make test || die "test failed" |
| 117 |
else |
| 118 |
perl ${S}/Build test || die "test failed" |
| 119 |
fi |
| 120 |
fi |
| 121 |
} |
| 122 |
|
| 123 |
perl-module_src_install() { |
| 124 |
|
| 125 |
perlinfo |
| 126 |
|
| 127 |
test -z ${mytargets} && mytargets="install" |
| 128 |
|
| 129 |
if [ -z ${BUILDER_VER} ]; then |
| 130 |
make ${myinst} ${mytargets} || die |
| 131 |
else |
| 132 |
perl ${S}/Build install |
| 133 |
fi |
| 134 |
|
| 135 |
fixlocalpod |
| 136 |
|
| 137 |
for FILE in `find ${D} -type f |grep -v '.so'`; do |
| 138 |
STAT=`file $FILE| grep -i " text"` |
| 139 |
if [ "${STAT}x" != "x" ]; then |
| 140 |
sed -i -e "s:${D}:/:g" ${FILE} |
| 141 |
fi |
| 142 |
done |
| 143 |
|
| 144 |
for doc in Change* MANIFEST* README*; do |
| 145 |
[ -s "$doc" ] && dodoc $doc |
| 146 |
done |
| 147 |
dodoc ${mydoc} |
| 148 |
} |
| 149 |
|
| 150 |
|
| 151 |
perl-module_pkg_setup() { |
| 152 |
|
| 153 |
perlinfo |
| 154 |
} |
| 155 |
|
| 156 |
|
| 157 |
perl-module_pkg_preinst() { |
| 158 |
|
| 159 |
perlinfo |
| 160 |
} |
| 161 |
|
| 162 |
perl-module_pkg_postinst() { |
| 163 |
|
| 164 |
updatepod |
| 165 |
} |
| 166 |
|
| 167 |
perl-module_pkg_prerm() { |
| 168 |
|
| 169 |
updatepod |
| 170 |
} |
| 171 |
|
| 172 |
perl-module_pkg_postrm() { |
| 173 |
|
| 174 |
updatepod |
| 175 |
} |
| 176 |
|
| 177 |
perlinfo() { |
| 178 |
|
| 179 |
eval `perl '-V:version'` |
| 180 |
PERL_VERSION=${version} |
| 181 |
|
| 182 |
eval `perl '-V:installsitearch'` |
| 183 |
SITE_ARCH=${installsitearch} |
| 184 |
|
| 185 |
eval `perl '-V:installsitearch'` |
| 186 |
SITE_LIB=${installsitearch} |
| 187 |
|
| 188 |
eval `perl '-V:installarchlib'` |
| 189 |
ARCH_LIB=${installarchlib} |
| 190 |
|
| 191 |
eval `perl '-V:installvendorlib'` |
| 192 |
VENDOR_LIB=${installvendorlib} |
| 193 |
|
| 194 |
eval `perl '-V:installvendorarch'` |
| 195 |
VENDOR_ARCH=${installvendorarch} |
| 196 |
|
| 197 |
if [ -f ${S}/Build.PL ]; then |
| 198 |
if [ ${PN} == "module-build" ]; then |
| 199 |
BUILDER_VER="1" # A bootstrapping if you will |
| 200 |
else |
| 201 |
BUILDER_VER=`perl -MModule::Build -e 'print "$Module::Build::VERSION;"' ` |
| 202 |
fi |
| 203 |
fi |
| 204 |
|
| 205 |
if [ -f /usr/bin/perl ] |
| 206 |
then |
| 207 |
POD_DIR="/usr/share/perl/gentoo-pods/${version}" |
| 208 |
fi |
| 209 |
} |
| 210 |
|
| 211 |
fixlocalpod() { |
| 212 |
perlinfo |
| 213 |
dodir ${POD_DIR} |
| 214 |
|
| 215 |
if [ -f ${D}${ARCH_LIB}/perllocal.pod ]; |
| 216 |
then |
| 217 |
touch ${D}/${POD_DIR}/${P}.pod |
| 218 |
sed -e "s:${D}::g" \ |
| 219 |
${D}${ARCH_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 220 |
touch ${D}/${POD_DIR}/${P}.pod.arch |
| 221 |
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.arch |
| 222 |
rm -f ${D}/${ARCH_LIB}/perllocal.pod |
| 223 |
fi |
| 224 |
|
| 225 |
if [ -f ${D}${SITE_LIB}/perllocal.pod ]; |
| 226 |
then |
| 227 |
touch ${D}/${POD_DIR}/${P}.pod |
| 228 |
sed -e "s:${D}::g" \ |
| 229 |
${D}${SITE_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 230 |
touch ${D}/${POD_DIR}/${P}.pod.site |
| 231 |
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.site |
| 232 |
rm -f ${D}/${SITE_LIB}/perllocal.pod |
| 233 |
fi |
| 234 |
|
| 235 |
if [ -f ${D}${VENDOR_LIB}/perllocal.pod ]; |
| 236 |
then |
| 237 |
touch ${D}/${POD_DIR}/${P}.pod |
| 238 |
sed -e "s:${D}::g" \ |
| 239 |
${D}${VENDOR_LIB}/perllocal.pod >> ${D}/${POD_DIR}/${P}.pod |
| 240 |
touch ${D}/${POD_DIR}/${P}.pod.vendor |
| 241 |
cat ${D}/${POD_DIR}/${P}.pod >>${D}/${POD_DIR}/${P}.pod.vendor |
| 242 |
rm -f ${D}/${VENDOR_LIB}/perllocal.pod |
| 243 |
fi |
| 244 |
} |
| 245 |
|
| 246 |
updatepod() { |
| 247 |
perlinfo |
| 248 |
|
| 249 |
if [ -d "${POD_DIR}" ] |
| 250 |
then |
| 251 |
for FILE in `find ${POD_DIR} -type f -name "*.pod.arch"`; do |
| 252 |
cat ${FILE} >> ${ARCH_LIB}/perllocal.pod |
| 253 |
rm -f ${FILE} |
| 254 |
done |
| 255 |
for FILE in `find ${POD_DIR} -type f -name "*.pod.site"`; do |
| 256 |
cat ${FILE} >> ${SITE_LIB}/perllocal.pod |
| 257 |
rm -f ${FILE} |
| 258 |
done |
| 259 |
for FILE in `find ${POD_DIR} -type f -name "*.pod.vendor"`; do |
| 260 |
cat ${FILE} >> ${VENDOR_LIB}/perllocal.pod |
| 261 |
rm -f ${FILE} |
| 262 |
done |
| 263 |
fi |
| 264 |
} |