gentoo-ebuilds/dev-java/javax-servlet-api/javax-servlet-api-2.5.ebuild
Arthur Zamarin bb0458a2ad
dev-java/javax-servlet-api: dekeyword x86
After a message to gentoo-dev ML, and no reply from any user on x86,

we decided to dekeyword most Java packages from x86, and reverse

dependencies of them.

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2024-10-17 18:31:11 +03:00

29 lines
819 B
Bash

# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
JAVA_PKG_IUSE="doc source"
MAVEN_ID="javax.servlet:servlet-api:2.5"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="JavaServlet(TM) Specification"
HOMEPAGE="https://javaee.github.io/servlet-spec/"
SRC_URI="https://repo1.maven.org/maven2/javax/servlet/servlet-api/${PV}/servlet-api-${PV}-sources.jar"
LICENSE="CDDL GPL-2"
SLOT="2.5"
KEYWORDS="amd64 arm64 ppc64"
RDEPEND=">=virtual/jre-1.8:*"
DEPEND=">=virtual/jdk-1.8:*"
JAVA_RESOURCE_DIRS="resources"
src_prepare() {
java-pkg-2_src_prepare
mkdir -p "${JAVA_RESOURCE_DIRS}/javax/servlet/resources" || die
mv dtd/* "${JAVA_RESOURCE_DIRS}/javax/servlet/resources" || die
find . -type f -name '*.properties' | xargs cp --parent -t resources || die
}