dev-java/tomcat-native: version bump

Package-Manager: portage-2.2.28
This commit is contained in:
Miroslav Šulc
2016-03-11 16:14:56 +01:00
parent 52b993df0b
commit 812dabc6ae
2 changed files with 59 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST tomcat-native-1.2.4-src.tar.gz 387352 SHA256 29d53d4646229a839ccb71b7b3caa25c256aab1965c33cc9d140247213b9b171 SHA512 c080867510fb9006832172ee0b1997cee067c6e0275b3f9bdf94f69c14b9a02317352d9cadd8a41d366fb5f25c42f7f8af419e0b699aaa5eefee20db96559e97 WHIRLPOOL bf0acc6a78a79b51d3802fb1e1bfb0ec3e71993723a1be58c5ac14d6d24bab6e54fc9d505e4d5c0852ce335b6edc47c6b57f99055c875258fa0414a702e06fb2
DIST tomcat-native-1.2.5-src.tar.gz 389032 SHA256 8841f233027da5069a940168ebb7164a79ce1a622e2064c167e6ebf21fe88dcb SHA512 07a4c35b12d2af2739e7f65c4f009afc208d28e5091c19af9ccd008ed97b9956190cab9da7772c8d1283778d7aacc7e09e0e8560aa755813e3d87761a9f1e817 WHIRLPOOL fcdc1aa4733bde037d894200bf547b43a949af77a92e7eaa028d7011ea7cd2094817572b1dbcaa5a59399ad528492c8e71147f103f853c1f6d403e4dda7ab34b

View File

@@ -0,0 +1,58 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit eutils java-pkg-2 java-ant-2
DESCRIPTION="Native APR library for Tomcat"
SLOT="0"
SRC_URI="mirror://apache/tomcat/tomcat-connectors/native/${PV}/source/${P}-src.tar.gz"
HOMEPAGE="http://tomcat.apache.org/"
KEYWORDS="~amd64 ~x86"
LICENSE="Apache-2.0"
IUSE="test"
RDEPEND="dev-libs/apr:1
dev-libs/openssl:=
>=virtual/jre-1.7"
DEPEND=">=virtual/jdk-1.7
test? ( dev-java/ant-junit:0 )"
S=${WORKDIR}/${P}-src
src_configure(){
cd native || die
econf --with-apr=/usr/bin/apr-1-config \
--with-ssl=/usr || die "Could not configure native sources"
}
src_compile() {
eant jar -f build.xml
cd native || die
default
}
src_install() {
java-pkg_newjar "dist/${P}.jar" "${PN}.jar"
cd native
emake DESTDIR="${D}" install || die "Could not install libtcnative-1.so"
}
src_test() {
java-pkg-2_src_test
}
pkg_postinst() {
elog
elog " APR should be available with Tomcat, for more information"
elog " please see http://tomcat.apache.org/tomcat-6.0-doc/apr.html"
elog
elog " Please report any bugs to https://bugs.gentoo.org/"
elog
}