Gentoo Archives: gentoo-commits

From: "Krzysiek Pawlik (nelchael)" <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apache/mod_caucho: ChangeLog mod_caucho-3.1.5.ebuild
Date: Wed, 27 Feb 2008 22:08:53
Message-Id: E1JUUSH-0006Pr-53@stork.gentoo.org
1 nelchael 08/02/27 22:08:49
2
3 Modified: ChangeLog
4 Added: mod_caucho-3.1.5.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.33 www-apache/mod_caucho/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_caucho/ChangeLog?rev=1.33&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_caucho/ChangeLog?rev=1.33&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_caucho/ChangeLog?r1=1.32&r2=1.33
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/ChangeLog,v
19 retrieving revision 1.32
20 retrieving revision 1.33
21 diff -u -r1.32 -r1.33
22 --- ChangeLog 29 Jan 2008 16:25:35 -0000 1.32
23 +++ ChangeLog 27 Feb 2008 22:08:48 -0000 1.33
24 @@ -1,6 +1,12 @@
25 # ChangeLog for www-apache/mod_caucho
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/ChangeLog,v 1.32 2008/01/29 16:25:35 hollow Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/ChangeLog,v 1.33 2008/02/27 22:08:48 nelchael Exp $
29 +
30 +*mod_caucho-3.1.5 (27 Feb 2008)
31 +
32 + 27 Feb 2008; Krzysiek Pawlik <nelchael@g.o>
33 + +mod_caucho-3.1.5.ebuild:
34 + Version bump.
35
36 29 Jan 2008; Benedikt Böhm <hollow@g.o> mod_caucho-3.0.24.ebuild,
37 mod_caucho-3.0.25.ebuild, mod_caucho-3.1.3.ebuild,
38
39
40
41 1.1 www-apache/mod_caucho/mod_caucho-3.1.5.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_caucho/mod_caucho-3.1.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_caucho/mod_caucho-3.1.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mod_caucho-3.1.5.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/mod_caucho-3.1.5.ebuild,v 1.1 2008/02/27 22:08:48 nelchael Exp $
51
52 inherit eutils apache-module autotools
53
54 KEYWORDS="~amd64 ~ppc ~x86"
55
56 DESCRIPTION="mod_caucho connects Resin and Apache2."
57 HOMEPAGE="http://www.caucho.com/"
58 SRC_URI="http://www.caucho.com/download/resin-${PV}-src.zip
59 mirror://gentoo/resin-gentoo-patches-${PV}.tar.bz2"
60 LICENSE="GPL-2"
61 SLOT="0"
62 IUSE=""
63
64 DEPEND=""
65 RDEPEND=""
66
67 S="${WORKDIR}/resin-${PV}"
68
69 # See apache-module.eclass for more information.
70 APACHE2_MOD_CONF="88_${PN}"
71 APACHE2_MOD_DEFINE="CAUCHO"
72
73 need_apache2
74
75 DEPEND="${DEPEND}
76 app-arch/unzip"
77
78 src_unpack() {
79
80 unpack ${A}
81
82 cd "${S}"
83
84 for i in "${WORKDIR}"/${PV}/mod_caucho-*; do
85 epatch "${i}"
86 done
87 epatch "${WORKDIR}/${PV}/resin-${PV}-configure.ac.patch"
88
89 eautoreconf
90 chmod 755 ./configure
91
92 }
93
94 src_compile() {
95
96 econf --with-apxs=${APXS} || die "econf failed"
97 emake -j1 -C "${S}/modules/c/src/apache2/" || die "emake failed"
98
99 }
100
101 src_install() {
102
103 cd "${S}/modules/c/src/apache2"
104 emake -j1 DESTDIR="${D}" install || die "emake install failed"
105
106 insinto "${APACHE_MODULES_CONFDIR}"
107 doins "${FILESDIR}/${APACHE2_MOD_CONF}.conf" \
108 || die "internal ebuild error: ${APACHE2_MOD_CONF}.conf not found."
109
110 }
111
112
113
114 --
115 gentoo-commits@l.g.o mailing list