diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2013-09-17 17:28:23 +0000 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2013-09-17 17:28:23 +0000 |
commit | 75f803ff5f40a75e5c74d702997e54ef41dd72e0 (patch) | |
tree | 780df27513727a274d518ffd9a1ed0517b2253ab /dev-java | |
parent | Rename variables in _python_ln_rel to make it less confusing. (diff) | |
download | gentoo-2-75f803ff5f40a75e5c74d702997e54ef41dd72e0.tar.gz gentoo-2-75f803ff5f40a75e5c74d702997e54ef41dd72e0.tar.bz2 gentoo-2-75f803ff5f40a75e5c74d702997e54ef41dd72e0.zip |
dev-java/tomcat-native: version bump
(Portage version: 2.2.6/cvs/Linux x86_64, signed Manifest commit with key CFE47E2F)
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/tomcat-native/ChangeLog | 8 | ||||
-rw-r--r-- | dev-java/tomcat-native/tomcat-native-1.1.28.ebuild | 47 |
2 files changed, 54 insertions, 1 deletions
diff --git a/dev-java/tomcat-native/ChangeLog b/dev-java/tomcat-native/ChangeLog index 007ac79fc570..ba3811c7a9f1 100644 --- a/dev-java/tomcat-native/ChangeLog +++ b/dev-java/tomcat-native/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-java/tomcat-native # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v 1.42 2013/05/20 08:29:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/ChangeLog,v 1.43 2013/09/17 17:28:23 fordfrog Exp $ + +*tomcat-native-1.1.28 (17 Sep 2013) + + 17 Sep 2013; Miroslav Šulc <fordfrog@gentoo.org> + +tomcat-native-1.1.28.ebuild: + version bump 20 May 2013; Agostino Sarubbo <ago@gentoo.org> tomcat-native-1.1.27.ebuild: Stable for x86, wrt bug #463034 diff --git a/dev-java/tomcat-native/tomcat-native-1.1.28.ebuild b/dev-java/tomcat-native/tomcat-native-1.1.28.ebuild new file mode 100644 index 000000000000..bf2c604908d7 --- /dev/null +++ b/dev-java/tomcat-native/tomcat-native-1.1.28.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/tomcat-native-1.1.28.ebuild,v 1.1 2013/09/17 17:28:23 fordfrog Exp $ + +EAPI="5" + +inherit base eutils java-pkg-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="" + +RDEPEND="=dev-libs/apr-1* + dev-libs/openssl + >=virtual/jre-1.5" + +DEPEND=">=virtual/jdk-1.5 + ${RDEPEND}" + +S=${WORKDIR}/${P}-src/jni/native + +src_configure(){ + econf --with-apr=/usr/bin/apr-1-config \ + --with-ssl=/usr || die "Could not configure native sources" +} + +src_compile() { + base_src_compile +} + +src_install() { + emake DESTDIR="${D}" install || die "Could not install libtcnative-1.so" +} + +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 http://bugs.gentoo.org/" + elog +} |