diff options
author | Johann Schmitz <ercpe@gentoo.org> | 2014-11-02 08:02:36 +0000 |
---|---|---|
committer | Johann Schmitz <ercpe@gentoo.org> | 2014-11-02 08:02:36 +0000 |
commit | 2ad68d6fd13c0ac2841032151b6ec5cb61be56b6 (patch) | |
tree | 44a7d15610901582140d871ef10a3211380beebf /dev-java/tomcat-servlet-api | |
parent | Remove sec-policy/selinux-* dependency from DEPEND but keep in RDEPEND (bug #... (diff) | |
download | gentoo-2-2ad68d6fd13c0ac2841032151b6ec5cb61be56b6.tar.gz gentoo-2-2ad68d6fd13c0ac2841032151b6ec5cb61be56b6.tar.bz2 gentoo-2-2ad68d6fd13c0ac2841032151b6ec5cb61be56b6.zip |
Version bump of tomcat-servlet-api for www-servers/tomcat:6
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 77C501ED)
Diffstat (limited to 'dev-java/tomcat-servlet-api')
-rw-r--r-- | dev-java/tomcat-servlet-api/ChangeLog | 8 | ||||
-rw-r--r-- | dev-java/tomcat-servlet-api/tomcat-servlet-api-6.0.41.ebuild | 34 |
2 files changed, 41 insertions, 1 deletions
diff --git a/dev-java/tomcat-servlet-api/ChangeLog b/dev-java/tomcat-servlet-api/ChangeLog index 38e2ff24d806..948c6783d98f 100644 --- a/dev-java/tomcat-servlet-api/ChangeLog +++ b/dev-java/tomcat-servlet-api/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-java/tomcat-servlet-api # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-servlet-api/ChangeLog,v 1.166 2014/04/03 07:50:05 fordfrog Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-servlet-api/ChangeLog,v 1.167 2014/11/02 08:02:36 ercpe Exp $ + +*tomcat-servlet-api-6.0.41 (02 Nov 2014) + + 02 Nov 2014; Johann Schmitz <ercpe@gentoo.org> + +tomcat-servlet-api-6.0.41.ebuild: + Version bump of tomcat-servlet-api for www-servers/tomcat:6 *tomcat-servlet-api-7.0.53 (03 Apr 2014) diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-6.0.41.ebuild b/dev-java/tomcat-servlet-api/tomcat-servlet-api-6.0.41.ebuild new file mode 100644 index 000000000000..7cd8e88628b9 --- /dev/null +++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-6.0.41.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-servlet-api/tomcat-servlet-api-6.0.41.ebuild,v 1.1 2014/11/02 08:02:36 ercpe Exp $ + +EAPI="5" +JAVA_PKG_IUSE="source" + +inherit eutils java-pkg-2 java-ant-2 + +MY_A="apache-${P}-src" +MY_P="${MY_A/-servlet-api/}" +DESCRIPTION="Tomcat's Servlet API 2.5/JSP API 2.1 implementation" +HOMEPAGE="http://tomcat.apache.org/" +SRC_URI="mirror://apache/tomcat/tomcat-6/v${PV}/src/${MY_P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="2.5" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris" +IUSE="" + +DEPEND=">=virtual/jdk-1.5" +RDEPEND=">=virtual/jre-1.5" + +S="${WORKDIR}/${MY_P}/" + +java_prepare() { + cp "${FILESDIR}/${SLOT}-build.xml" build.xml || die "Could not replace build.xml" + rm */*/build.xml +} + +src_install() { + java-pkg_dojar "${S}"/output/build/lib/*.jar + use source && java-pkg_dosrc java/javax/servlet/ +} |