Gentoo Archives: gentoo-commits

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