mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-23 18:38:08 -07:00
Bug: https://bugs.gentoo.org/786777 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/20673 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
41 lines
809 B
Bash
41 lines
809 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
JAVA_PKG_IUSE="source"
|
|
|
|
inherit java-pkg-2 java-ant-2
|
|
|
|
DESCRIPTION="Resin Servlet API 2.4/JSP API 2.0 implementation"
|
|
HOMEPAGE="http://www.caucho.com/"
|
|
SRC_URI="http://www.caucho.com/download/resin-${PV}-src.zip
|
|
mirror://gentoo/resin-gentoo-patches-${PV}.tar.bz2"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="2.4"
|
|
KEYWORDS="amd64 ppc64 x86"
|
|
|
|
DEPEND=">=virtual/jdk-1.8:*"
|
|
RDEPEND=">=virtual/jre-1.8:*"
|
|
BDEPEND="app-arch/unzip"
|
|
|
|
S="${WORKDIR}/resin-${PV}"
|
|
|
|
EANT_BUILD_TARGET="jsdk"
|
|
EANT_DOC_TARGET=""
|
|
|
|
PATCHES=(
|
|
"${WORKDIR}/${PV}/resin-${PV}-build.xml.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
mkdir lib || die
|
|
}
|
|
|
|
src_install() {
|
|
java-pkg_newjar "lib/jsdk-24.jar"
|
|
use source && java-pkg_dosrc "${S}"/modules/jsdk/src/*
|
|
}
|