diff options
author | 2006-01-16 15:41:27 +0000 | |
---|---|---|
committer | 2006-01-16 15:41:27 +0000 | |
commit | ee729bf89e28a8464051719b26c2f40cd01259ce (patch) | |
tree | da9cdade590dc8765a714e617fc10cf1d597ee7b /dev-perl/HTML-Mason/HTML-Mason-1.32.ebuild | |
parent | Version bump (diff) | |
download | historical-ee729bf89e28a8464051719b26c2f40cd01259ce.tar.gz historical-ee729bf89e28a8464051719b26c2f40cd01259ce.tar.bz2 historical-ee729bf89e28a8464051719b26c2f40cd01259ce.zip |
Version bump
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'dev-perl/HTML-Mason/HTML-Mason-1.32.ebuild')
-rw-r--r-- | dev-perl/HTML-Mason/HTML-Mason-1.32.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/dev-perl/HTML-Mason/HTML-Mason-1.32.ebuild b/dev-perl/HTML-Mason/HTML-Mason-1.32.ebuild new file mode 100644 index 000000000000..a631de2e386d --- /dev/null +++ b/dev-perl/HTML-Mason/HTML-Mason-1.32.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/HTML-Mason-1.32.ebuild,v 1.1 2006/01/16 15:41:27 mcummings Exp $ + +inherit perl-module + +DESCRIPTION="A HTML development and delivery Perl Module" +SRC_URI="mirror://cpan/authors/id/D/DR/DROLSKY/${P}.tar.gz" +HOMEPAGE="http://www.masonhq.com/" + +SLOT="0" +LICENSE="|| ( Artistic GPL-2 )" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="apache2 modperl doc" +SRC_TEST="do" + +DEPEND=" + !modperl? ( perl-core/CGI ) + modperl? ( + !apache2? ( + =net-www/apache-1* + >=www-apache/libapreq-1.0-r2 + <www-apache/mod_perl-2 ) + apache2? ( + >=net-www/apache-2 + www-apache/libapreq2 + >=www-apache/mod_perl-2 ) + ) + >=dev-perl/Params-Validate-0.7 + dev-perl/module-build + >=dev-perl/Class-Container-0.08 + >=dev-perl/Exception-Class-1.15 + perl-core/Scalar-List-Utils + || ( perl-core/File-Spec >=dev-lang/perl-5.8.0-r12 ) + >=dev-perl/Cache-Cache-1.01" + +mydoc="CREDITS UPGRADE" +myconf="--noprompts" + +perl-module_src_prep() { + # Note about new modperl use flag + if use !modperl ; then + ewarn "HTML-Mason will only install with modperl support" + ewarn "if the use flag modperl is enabled." + sleep 5 + fi + # rendhalver - needed to set an env var for the build script so it finds our apache. + if use apache2; then + APACHE="/usr/sbin/apache2" + else + APACHE="/usr/sbin/apache" + fi + + APACHE="${APACHE}" perl ${S}/Build.PL installdirs=vendor destdir=${D} ${myconf} +} + +src_install () { + perl-module_src_install + # rendhalver - the html docs have subdirs so this gets all of them + use doc && dohtml -r htdocs/* +} |