blob: f7025785d00cfe5a4f5c48f30b22ae4ee0917a7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit java-virtuals-2
DESCRIPTION="Virtual for servlet api"
HOMEPAGE="http://java.sun.com/products/servlet/"
LICENSE="public-domain"
SLOT="${PV}"
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~ppc-macos ~x64-macos"
RDEPEND="|| (
dev-java/tomcat-servlet-api:${SLOT}
dev-java/resin-servlet-api:${SLOT}
)"
DEPEND=""
JAVA_VIRTUAL_PROVIDES="tomcat-servlet-api-${SLOT} resin-servlet-api-${SLOT}"
|