Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/HTML-Mason: HTML-Mason-1.45.ebuild ChangeLog
Date: Fri, 23 Apr 2010 18:20:36
Message-Id: 20100423182020.100EA2C04B@corvid.gentoo.org
1 robbat2 10/04/23 18:20:19
2
3 Modified: ChangeLog
4 Added: HTML-Mason-1.45.ebuild
5 Log:
6 Version bump via perl-bump experimental tool.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.95 dev-perl/HTML-Mason/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/HTML-Mason/ChangeLog?rev=1.95&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/HTML-Mason/ChangeLog?rev=1.95&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/HTML-Mason/ChangeLog?r1=1.94&r2=1.95
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/ChangeLog,v
19 retrieving revision 1.94
20 retrieving revision 1.95
21 diff -p -w -b -B -u -u -r1.94 -r1.95
22 --- ChangeLog 28 Mar 2010 00:48:51 -0000 1.94
23 +++ ChangeLog 23 Apr 2010 18:20:19 -0000 1.95
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-perl/HTML-Mason
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/ChangeLog,v 1.94 2010/03/28 00:48:51 robbat2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/ChangeLog,v 1.95 2010/04/23 18:20:19 robbat2 Exp $
29 +
30 +*HTML-Mason-1.45 (23 Apr 2010)
31 +
32 + 23 Apr 2010; Robin H. Johnson <robbat2@g.o>
33 + +HTML-Mason-1.45.ebuild:
34 + Version bump via perl-bump experimental tool.
35
36 *HTML-Mason-1.44 (28 Mar 2010)
37
38
39
40
41 1.1 dev-perl/HTML-Mason/HTML-Mason-1.45.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/HTML-Mason/HTML-Mason-1.45.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/HTML-Mason/HTML-Mason-1.45.ebuild?rev=1.1&content-type=text/plain
45
46 Index: HTML-Mason-1.45.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Mason/HTML-Mason-1.45.ebuild,v 1.1 2010/04/23 18:20:19 robbat2 Exp $
51
52 inherit depend.apache perl-module
53
54 DESCRIPTION="A HTML development and delivery Perl Module"
55 SRC_URI="mirror://cpan/authors/id/D/DR/DROLSKY/${P}.tar.gz"
56 HOMEPAGE="http://www.masonhq.com/"
57
58 SLOT="0"
59 LICENSE="|| ( Artistic GPL-2 )"
60 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
61 IUSE="modperl doc test"
62 SRC_TEST="do"
63
64 RDEPEND="!modperl? ( virtual/perl-CGI )
65 modperl? (
66 www-apache/libapreq2
67 >=www-apache/mod_perl-2
68 )
69 >=dev-perl/Params-Validate-0.7
70 >=dev-perl/Class-Container-0.08
71 >=dev-perl/Exception-Class-1.15
72 dev-perl/HTML-Parser
73 virtual/perl-Scalar-List-Utils
74 virtual/perl-File-Spec
75 >=dev-perl/Cache-Cache-1.01
76 dev-perl/Log-Any"
77
78 DEPEND="${RDEPEND}
79 virtual/perl-Module-Build
80 test? ( dev-perl/Test-Deep )"
81
82 want_apache2 modperl
83
84 mydoc="CREDITS UPGRADE"
85 myconf="--noprompts"
86
87 pkg_setup() {
88 depend.apache_pkg_setup modperl
89 perl-module_pkg_setup
90 }
91
92 perl-module_src_prep() {
93 # Note about new modperl use flag
94 if use !modperl ; then
95 ewarn "HTML-Mason will only install with modperl support"
96 ewarn "if the use flag modperl is enabled."
97 sleep 5
98 fi
99 # rendhalver - needed to set an env var for the build script so it finds our apache.
100 APACHE="${APACHE_BIN}" perl ${S}/Build.PL installdirs=vendor destdir=${D} ${myconf}
101 }
102
103 src_install () {
104 perl-module_src_install
105 # rendhalver - the html docs have subdirs so this gets all of them
106 use doc && dohtml -r htdocs/*
107 }