| 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.115 2009/03/26 17:40:23 tove Exp $
|
| 4 |
#
|
| 5 |
# Author: Seemant Kulleen <seemant@gentoo.org>
|
| 6 |
|
| 7 |
# @ECLASS: perl-module.eclass
|
| 8 |
# @MAINTAINER:
|
| 9 |
# perl@gentoo.org
|
| 10 |
# @BLURB: eclass for perl modules
|
| 11 |
# @DESCRIPTION:
|
| 12 |
# The perl-module eclass is designed to allow easier installation of perl
|
| 13 |
# modules, and their incorporation into the Gentoo Linux system.
|
| 14 |
|
| 15 |
inherit eutils base
|
| 16 |
|
| 17 |
case "${EAPI:-0}" in
|
| 18 |
0|1)
|
| 19 |
EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm src_compile src_install src_test src_unpack
|
| 20 |
;;
|
| 21 |
2)
|
| 22 |
EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install
|
| 23 |
|
| 24 |
case "${GENTOO_DEPEND_ON_PERL:-yes}" in
|
| 25 |
yes)
|
| 26 |
DEPEND="dev-lang/perl[-build]"
|
| 27 |
RDEPEND="${DEPEND}"
|
| 28 |
;;
|
| 29 |
esac
|
| 30 |
;;
|
| 31 |
esac
|
| 32 |
|
| 33 |
DESCRIPTION="Based on the $ECLASS eclass"
|
| 34 |
|
| 35 |
LICENSE="${LICENSE:-|| ( Artistic GPL-2 )}"
|
| 36 |
|
| 37 |
[[ -z "${SRC_URI}" && -z "${MODULE_A}" ]] && MODULE_A="${MY_P:-${P}}.tar.gz"
|
| 38 |
[[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \
|
| 39 |
SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION}/${MODULE_A}"
|
| 40 |
[[ -z "${HOMEPAGE}" ]] && \
|
| 41 |
HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}"
|
| 42 |
|
| 43 |
SRC_PREP="no"
|
| 44 |
SRC_TEST="skip"
|
| 45 |
PREFER_BUILDPL="yes"
|
| 46 |
|
| 47 |
PERL_VERSION=""
|
| 48 |
SITE_ARCH=""
|
| 49 |
SITE_LIB=""
|
| 50 |
ARCH_LIB=""
|
| 51 |
VENDOR_ARCH=""
|
| 52 |
VENDOR_LIB=""
|
| 53 |
|
| 54 |
pm_echovar=""
|
| 55 |
perlinfo_done=false
|
| 56 |
|
| 57 |
perl-module_src_unpack() {
|
| 58 |
base_src_unpack unpack
|
| 59 |
has "${EAPI:-0}" 0 1 && perl-module_src_prepare
|
| 60 |
}
|
| 61 |
|
| 62 |
perl-module_src_prepare() {
|
| 63 |
if [[ -n ${PATCHES} ]] ; then
|
| 64 |
base_src_unpack autopatch
|
| 65 |
fi
|
| 66 |
esvn_clean
|
| 67 |
}
|
| 68 |
|
| 69 |
perl-module_src_configure() {
|
| 70 |
perl-module_src_prep
|
| 71 |
}
|
| 72 |
|
| 73 |
perl-module_src_prep() {
|
| 74 |
[[ "${SRC_PREP}" = "yes" ]] && return 0
|
| 75 |
SRC_PREP="yes"
|
| 76 |
|
| 77 |
${perlinfo_done} || perlinfo
|
| 78 |
|
| 79 |
export PERL_MM_USE_DEFAULT=1
|
| 80 |
# Disable ExtUtils::AutoInstall from prompting
|
| 81 |
export PERL_EXTUTILS_AUTOINSTALL="--skipdeps"
|
| 82 |
|
| 83 |
if [[ "${PREFER_BUILDPL}" == "yes" && -f Build.PL ]] ; then
|
| 84 |
einfo "Using Module::Build"
|
| 85 |
perl Build.PL \
|
| 86 |
--installdirs=vendor \
|
| 87 |
--libdoc= \
|
| 88 |
--destdir="${D}" \
|
| 89 |
--create_packlist=0 \
|
| 90 |
${myconf} \
|
| 91 |
<<< "${pm_echovar}" \
|
| 92 |
|| die "Unable to build! (are you using USE=\"build\"?)"
|
| 93 |
elif [[ -f Makefile.PL ]] ; then
|
| 94 |
einfo "Using ExtUtils::MakeMaker"
|
| 95 |
perl Makefile.PL \
|
| 96 |
PREFIX=/usr \
|
| 97 |
INSTALLDIRS=vendor \
|
| 98 |
INSTALLMAN3DIR='none' \
|
| 99 |
DESTDIR="${D}" \
|
| 100 |
${myconf} \
|
| 101 |
<<< "${pm_echovar}" \
|
| 102 |
|| die "Unable to build! (are you using USE=\"build\"?)"
|
| 103 |
fi
|
| 104 |
if [[ ! -f Build.PL && ! -f Makefile.PL ]] ; then
|
| 105 |
einfo "No Make or Build file detected..."
|
| 106 |
return
|
| 107 |
fi
|
| 108 |
}
|
| 109 |
|
| 110 |
perl-module_src_compile() {
|
| 111 |
${perlinfo_done} || perlinfo
|
| 112 |
|
| 113 |
has "${EAPI:-0}" 0 1 && perl-module_src_prep
|
| 114 |
|
| 115 |
if [[ -f Build ]] ; then
|
| 116 |
./Build build \
|
| 117 |
|| die "compilation failed"
|
| 118 |
elif [[ -f Makefile ]] ; then
|
| 119 |
emake \
|
| 120 |
OTHERLDFLAGS="${LDFLAGS}" \
|
| 121 |
${mymake} \
|
| 122 |
|| die "compilation failed"
|
| 123 |
# OPTIMIZE="${CFLAGS}" \
|
| 124 |
fi
|
| 125 |
}
|
| 126 |
|
| 127 |
perl-module_src_test() {
|
| 128 |
if [[ "${SRC_TEST}" == "do" ]] ; then
|
| 129 |
${perlinfo_done} || perlinfo
|
| 130 |
if [[ -f Build ]] ; then
|
| 131 |
./Build test || die "test failed"
|
| 132 |
elif [[ -f Makefile ]] ; then
|
| 133 |
emake test || die "test failed"
|
| 134 |
fi
|
| 135 |
fi
|
| 136 |
}
|
| 137 |
|
| 138 |
perl-module_src_install() {
|
| 139 |
local f
|
| 140 |
${perlinfo_done} || perlinfo
|
| 141 |
|
| 142 |
if [[ -z ${mytargets} ]] ; then
|
| 143 |
case "${CATEGORY}" in
|
| 144 |
dev-perl|perl-core) mytargets="pure_install" ;;
|
| 145 |
*) mytargets="install" ;;
|
| 146 |
esac
|
| 147 |
fi
|
| 148 |
|
| 149 |
if [[ -f Build ]] ; then
|
| 150 |
./Build ${mytargets} \
|
| 151 |
|| die "./Build ${mytargets} failed"
|
| 152 |
elif [[ -f Makefile ]] ; then
|
| 153 |
emake ${myinst} ${mytargets} \
|
| 154 |
|| die "emake ${myinst} ${mytargets} failed"
|
| 155 |
fi
|
| 156 |
|
| 157 |
if [[ -d "${D}"/usr/share/man ]] ; then
|
| 158 |
# einfo "Cleaning out stray man files"
|
| 159 |
find "${D}"/usr/share/man -type f -name "*.3pm" -delete
|
| 160 |
find "${D}"/usr/share/man -depth -type d -empty -delete
|
| 161 |
fi
|
| 162 |
|
| 163 |
fixlocalpod
|
| 164 |
|
| 165 |
for f in Change* CHANGES README* ${mydoc}; do
|
| 166 |
[[ -s "${f}" ]] && dodoc ${f}
|
| 167 |
done
|
| 168 |
|
| 169 |
if [[ -d "${D}/${VENDOR_LIB}" ]] ; then
|
| 170 |
find "${D}/${VENDOR_LIB}" -type f -a \( -name .packlist \
|
| 171 |
-o \( -name '*.bs' -a -empty \) \) -delete
|
| 172 |
find "${D}/${VENDOR_LIB}" -depth -mindepth 1 -type d -empty -delete
|
| 173 |
fi
|
| 174 |
|
| 175 |
find "${D}" -type f -not -name '*.so' -print0 | while read -rd '' f ; do
|
| 176 |
if file "${f}" | grep -q -i " text" ; then
|
| 177 |
if grep -q "${D}" "${f}" ; then ewarn "QA: File contains a temporary path ${f}" ;fi
|
| 178 |
sed -i -e "s:${D}:/:g" "${f}"
|
| 179 |
fi
|
| 180 |
done
|
| 181 |
}
|
| 182 |
|
| 183 |
perl-module_pkg_setup() {
|
| 184 |
${perlinfo_done} || perlinfo
|
| 185 |
}
|
| 186 |
|
| 187 |
perl-module_pkg_preinst() {
|
| 188 |
${perlinfo_done} || perlinfo
|
| 189 |
}
|
| 190 |
|
| 191 |
perl-module_pkg_postinst() { : ; }
|
| 192 |
# einfo "Man pages are not installed for most modules now."
|
| 193 |
# einfo "Please use perldoc instead."
|
| 194 |
#}
|
| 195 |
|
| 196 |
perl-module_pkg_prerm() { : ; }
|
| 197 |
|
| 198 |
perl-module_pkg_postrm() { : ; }
|
| 199 |
|
| 200 |
perlinfo() {
|
| 201 |
perlinfo_done=true
|
| 202 |
|
| 203 |
local f version install{site{arch,lib},archlib,vendor{arch,lib}}
|
| 204 |
for f in version install{site{arch,lib},archlib,vendor{arch,lib}} ; do
|
| 205 |
eval "$(perl -V:${f} )"
|
| 206 |
done
|
| 207 |
PERL_VERSION=${version}
|
| 208 |
SITE_ARCH=${installsitearch}
|
| 209 |
SITE_LIB=${installsitelib}
|
| 210 |
ARCH_LIB=${installarchlib}
|
| 211 |
VENDOR_LIB=${installvendorlib}
|
| 212 |
VENDOR_ARCH=${installvendorarch}
|
| 213 |
}
|
| 214 |
|
| 215 |
fixlocalpod() {
|
| 216 |
find "${D}" -type f -name perllocal.pod -delete
|
| 217 |
find "${D}" -depth -mindepth 1 -type d -empty -delete
|
| 218 |
}
|