Gentoo Archives: gentoo-commits

From: "Miroslav Sulc (fordfrog)" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/tomcat-native: ChangeLog tomcat-native-1.1.31.ebuild
Date: Wed, 24 Sep 2014 11:31:05
Message-Id: 20140924113101.18C9B61EA@oystercatcher.gentoo.org
1 fordfrog 14/09/24 11:31:01
2
3 Modified: ChangeLog
4 Added: tomcat-native-1.1.31.ebuild
5 Log:
6 dev-java/tomcat-native: version bump
7
8 (Portage version: 2.2.13/cvs/Linux x86_64, signed Manifest commit with key CFE47E2F)
9
10 Revision Changes Path
11 1.49 dev-java/tomcat-native/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-native/ChangeLog?rev=1.49&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-native/ChangeLog?rev=1.49&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-native/ChangeLog?r1=1.48&r2=1.49
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v
20 retrieving revision 1.48
21 retrieving revision 1.49
22 diff -u -r1.48 -r1.49
23 --- ChangeLog 18 Apr 2014 14:54:53 -0000 1.48
24 +++ ChangeLog 24 Sep 2014 11:31:01 -0000 1.49
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-java/tomcat-native
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v 1.48 2014/04/18 14:54:53 fordfrog Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v 1.49 2014/09/24 11:31:01 fordfrog Exp $
30 +
31 +*tomcat-native-1.1.31 (24 Sep 2014)
32 +
33 + 24 Sep 2014; Miroslav Šulc <fordfrog@g.o>
34 + +tomcat-native-1.1.31.ebuild:
35 + Version bump
36
37 18 Apr 2014; Miroslav Šulc <fordfrog@g.o>
38 -tomcat-native-1.1.23.ebuild, -tomcat-native-1.1.24.ebuild,
39
40
41
42 1.1 dev-java/tomcat-native/tomcat-native-1.1.31.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-native/tomcat-native-1.1.31.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-native/tomcat-native-1.1.31.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tomcat-native-1.1.31.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/tomcat-native-1.1.31.ebuild,v 1.1 2014/09/24 11:31:01 fordfrog Exp $
52
53 EAPI="5"
54
55 inherit base eutils java-pkg-2
56
57 DESCRIPTION="Native APR library for Tomcat"
58
59 SLOT="0"
60 SRC_URI="mirror://apache/tomcat/tomcat-connectors/native/${PV}/source/${P}-src.tar.gz"
61 HOMEPAGE="http://tomcat.apache.org/"
62 KEYWORDS="~amd64 ~x86"
63 LICENSE="Apache-2.0"
64 IUSE=""
65
66 RDEPEND="=dev-libs/apr-1*
67 dev-libs/openssl
68 >=virtual/jre-1.5"
69
70 DEPEND=">=virtual/jdk-1.5
71 ${RDEPEND}"
72
73 S=${WORKDIR}/${P}-src/jni/native
74
75 src_configure(){
76 econf --with-apr=/usr/bin/apr-1-config \
77 --with-ssl=/usr || die "Could not configure native sources"
78 }
79
80 src_compile() {
81 base_src_compile
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "Could not install libtcnative-1.so"
86 }
87
88 pkg_postinst() {
89 elog
90 elog " APR should be available with Tomcat, for more information"
91 elog " please see http://tomcat.apache.org/tomcat-6.0-doc/apr.html"
92 elog
93 elog " Please report any bugs to http://bugs.gentoo.org/"
94 elog
95 }