dev-java/servletapi: EAPI 6 bump.
authorPatrice Clement <monsieurp@gentoo.org>
Mon, 1 Jan 2018 23:25:17 +0000 (00:25 +0100)
committerPatrice Clement <monsieurp@gentoo.org>
Mon, 1 Jan 2018 23:36:15 +0000 (00:36 +0100)
Package-Manager: Portage-2.3.13, Repoman-2.3.3

dev-java/servletapi/servletapi-2.3-r4.ebuild [new file with mode: 0644]

diff --git a/dev-java/servletapi/servletapi-2.3-r4.ebuild b/dev-java/servletapi/servletapi-2.3-r4.ebuild
new file mode 100644 (file)
index 0000000..bb0d308
--- /dev/null
@@ -0,0 +1,37 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit java-pkg-2 java-ant-2
+
+DESCRIPTION="Servlet API 2.3 from jakarta.apache.org"
+HOMEPAGE="https://jakarta.apache.org/"
+SRC_URI="mirror://gentoo/${P}-20021101.tar.gz"
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~x64-solaris"
+LICENSE="Apache-1.1"
+SLOT="2.3"
+IUSE="doc source"
+
+DEPEND="
+       >=virtual/jdk-1.6
+       >=dev-java/ant-core-1.4
+       source? ( app-arch/zip )"
+
+RDEPEND="
+       >=virtual/jre-1.6"
+
+S="${WORKDIR}/jakarta-servletapi-4"
+
+src_compile() {
+       eant all
+}
+
+src_install() {
+       java-pkg_dojar dist/lib/servlet.jar
+
+       use doc && java-pkg_dohtml -r dist/docs/*
+       use source && java-pkg_dosrc src/share/javax
+       dodoc dist/README.txt
+}