mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
27 lines
551 B
Bash
27 lines
551 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="Jetty IO Utility"
|
|
HOMEPAGE="http://www.eclipse.org/jetty/"
|
|
SRC_URI="https://repo1.maven.org/maven2/org/eclipse/jetty/${PN}/${PV}/${P}-sources.jar"
|
|
LICENSE="EPL-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND=">=virtual/jre-11"
|
|
|
|
DEPEND=">=virtual/jdk-11
|
|
dev-java/jetty-util"
|
|
|
|
JAVA_GENTOO_CLASSPATH="jetty-util"
|
|
|
|
src_prepare(){
|
|
rm module-info.java
|
|
eapply_user
|
|
}
|