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.33.ebuild
Date: Sat, 28 Mar 2015 15:38:08
Message-Id: 20150328153757.8EE2614B63@oystercatcher.gentoo.org
1 fordfrog 15/03/28 15:37:56
2
3 Modified: ChangeLog
4 Added: tomcat-native-1.1.33.ebuild
5 Log:
6 dev-java/tomcat-native: version bump
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key CFE47E2F)
9
10 Revision Changes Path
11 1.53 dev-java/tomcat-native/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-native/ChangeLog?rev=1.53&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-native/ChangeLog?rev=1.53&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-native/ChangeLog?r1=1.52&r2=1.53
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v
20 retrieving revision 1.52
21 retrieving revision 1.53
22 diff -u -r1.52 -r1.53
23 --- ChangeLog 25 Feb 2015 15:34:47 -0000 1.52
24 +++ ChangeLog 28 Mar 2015 15:37:56 -0000 1.53
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-java/tomcat-native
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v 1.52 2015/02/25 15:34:47 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v 1.53 2015/03/28 15:37:56 fordfrog Exp $
30 +
31 +*tomcat-native-1.1.33 (28 Mar 2015)
32 +
33 + 28 Mar 2015; Miroslav Ć ulc <fordfrog@g.o>
34 + +tomcat-native-1.1.33.ebuild:
35 + version bump
36
37 25 Feb 2015; Agostino Sarubbo <ago@g.o> tomcat-native-1.1.32.ebuild:
38 Stable for x86, wrt bug #535096
39
40
41
42 1.1 dev-java/tomcat-native/tomcat-native-1.1.33.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-native/tomcat-native-1.1.33.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tomcat-native/tomcat-native-1.1.33.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tomcat-native-1.1.33.ebuild
48 ===================================================================
49 # Copyright 1999-2015 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.33.ebuild,v 1.1 2015/03/28 15:37:56 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 }