blob: 1cf3e1eb77e3fbd958b1a0a3a4b4506b3e9e37a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2007 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.11 2007/01/20 14:41:19 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? ( virtual/perl-CGI )
modperl? (
!apache2? (
=net-www/apache-1*
>=www-misc/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-0.28
>=dev-perl/Class-Container-0.08
>=dev-perl/Exception-Class-1.15
virtual/perl-Scalar-List-Utils
virtual/perl-File-Spec
>=dev-perl/Cache-Cache-1.01
dev-lang/perl"
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/*
}
|