Gentoo Archives: gentoo-commits

From: "Petteri Raty (betelgeuse)" <betelgeuse@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/tomcat-native: ChangeLog tomcat-native-1.1.20.ebuild
Date: Wed, 21 Apr 2010 15:37:09
Message-Id: 20100421153702.429A72C04B@corvid.gentoo.org
1 betelgeuse 10/04/21 15:37:02
2
3 Modified: ChangeLog
4 Added: tomcat-native-1.1.20.ebuild
5 Log:
6 Version bump. Fixes bug #316545.
7 (Portage version: 2.2_rc67/cvs/Linux i686)
8
9 Revision Changes Path
10 1.27 dev-java/tomcat-native/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/tomcat-native/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/tomcat-native/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/tomcat-native/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 2 Mar 2010 13:50:27 -0000 1.26
23 +++ ChangeLog 21 Apr 2010 15:37:02 -0000 1.27
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-java/tomcat-native
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v 1.26 2010/03/02 13:50:27 phajdan.jr Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v 1.27 2010/04/21 15:37:02 betelgeuse Exp $
29 +
30 +*tomcat-native-1.1.20 (21 Apr 2010)
31 +
32 + 21 Apr 2010; Petteri Räty <betelgeuse@g.o>
33 + +tomcat-native-1.1.20.ebuild:
34 + Version bump. Fixes bug #316545.
35
36 02 Mar 2010; Pawel Hajdan jr <phajdan.jr@g.o>
37 tomcat-native-1.1.18.ebuild:
38
39
40
41 1.1 dev-java/tomcat-native/tomcat-native-1.1.20.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/tomcat-native/tomcat-native-1.1.20.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/tomcat-native/tomcat-native-1.1.20.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tomcat-native-1.1.20.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-java/tomcat-native/tomcat-native-1.1.20.ebuild,v 1.1 2010/04/21 15:37:02 betelgeuse Exp $
51
52 EAPI="2"
53
54 inherit base eutils java-pkg-2
55
56 DESCRIPTION="Native APR library for Tomcat"
57
58 SLOT="0"
59 SRC_URI="mirror://apache/tomcat/tomcat-connectors/native/${PV}/source/${P}-src.tar.gz"
60 HOMEPAGE="http://tomcat.apache.org/"
61 KEYWORDS="~amd64 ~x86"
62 LICENSE="Apache-2.0"
63 IUSE=""
64
65 RDEPEND="=dev-libs/apr-1*
66 dev-libs/openssl
67 >=virtual/jre-1.5"
68
69 DEPEND=">=virtual/jdk-1.5
70 ${RDEPEND}"
71
72 S=${WORKDIR}/${P}-src/jni/native
73
74 src_configure(){
75 econf --with-apr=/usr/bin/apr-1-config \
76 --with-ssl=/usr || die "Could not configure native sources"
77 }
78
79 src_compile() {
80 base_src_compile
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die "Could not install libtcnative-1.so"
85 }
86
87 pkg_postinst() {
88 elog
89 elog " APR should be available with Tomcat, for more information"
90 elog " please see http://tomcat.apache.org/tomcat-6.0-doc/apr.html"
91 elog
92 elog " Please report any bugs to http://bugs.gentoo.org/"
93 elog
94 }