blob: c2a0c5f7aabba18a294ce660a94dd6a3fccabb6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
JAVA_PKG_IUSE="doc source"
MAVEN_ID="org.apache.tomcat:tomcat-el-api:10.0.27"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Tomcat's EL API 5.0 implementation"
HOMEPAGE="https://tomcat.apache.org/"
SRC_URI="mirror://apache/tomcat/tomcat-$(ver_cut 1)/v${PV}/src/apache-tomcat-${PV}-src.tar.gz"
LICENSE="Apache-2.0"
SLOT="4.0"
KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
DEPEND=">=virtual/jdk-1.8:*"
RDEPEND=">=virtual/jre-1.8:*"
S="${WORKDIR}/apache-tomcat-${PV}-src"
JAVA_RESOURCE_DIRS="resources"
JAVA_SRC_DIR="java/jakarta/el"
src_prepare() {
default
# remove anything related to "el" or "jsp"
find java/jakarta \( -name 'jsp' -o -name 'servlet' \) \
-exec rm -rf {} + || die "removing jsp failed"
mkdir resources || "creating \"resources\" failed"
cp -r java/jakarta resources || "cannot copy to \"resources\" dir"
find resources -name '*.java' -exec rm -rf {} + || die "removing *.java files failed"
}
|