summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2016-02-10 15:51:32 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2016-02-12 19:19:25 +0100
commitec560ee2c0416baf052b39fba6309e2dd64d2d9a (patch)
treef34c94a5c32f2db866771353b83516063d3d20ef /dev-java/tomcat-native/tomcat-native-1.1.32.ebuild
parentapp-editor/nano: drop old <2.4.3 versions (diff)
downloadgentoo-ec560ee2c0416baf052b39fba6309e2dd64d2d9a.tar.gz
gentoo-ec560ee2c0416baf052b39fba6309e2dd64d2d9a.tar.bz2
gentoo-ec560ee2c0416baf052b39fba6309e2dd64d2d9a.zip
dev-java/tomcat-native: removed obsolete ebuilds
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-java/tomcat-native/tomcat-native-1.1.32.ebuild')
-rw-r--r--dev-java/tomcat-native/tomcat-native-1.1.32.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-java/tomcat-native/tomcat-native-1.1.32.ebuild b/dev-java/tomcat-native/tomcat-native-1.1.32.ebuild
deleted file mode 100644
index 30e70b6f707a..000000000000
--- a/dev-java/tomcat-native/tomcat-native-1.1.32.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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 https://bugs.gentoo.org/"
- elog
-}