2022-02-09 17:18:59 +03:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
2015-12-04 19:28:01 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2021-12-15 10:55:28 +03:00
|
|
|
EAPI=8
|
2015-12-04 19:28:01 +03:00
|
|
|
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
2021-12-15 10:55:28 +03:00
|
|
|
MAVEN_ID="org.osgi:org.osgi.core:5.0.0"
|
2015-12-04 19:28:01 +03:00
|
|
|
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
|
|
|
|
DESCRIPTION="OSGi Service Platform Core API (Companion Code)"
|
|
|
|
HOMEPAGE="http://www.osgi.org/Specifications/HomePage"
|
|
|
|
SRC_URI="http://www.osgi.org/download/r5/osgi.core-${PV}.jar"
|
|
|
|
|
|
|
|
LICENSE="Apache-2.0"
|
|
|
|
SLOT="0"
|
2022-02-09 17:18:59 +03:00
|
|
|
KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x64-macos"
|
2015-12-04 19:28:01 +03:00
|
|
|
|
2021-12-15 10:55:28 +03:00
|
|
|
RDEPEND=">=virtual/jre-1.8:*"
|
2015-12-04 19:28:01 +03:00
|
|
|
|
2021-12-15 10:55:28 +03:00
|
|
|
DEPEND=">=virtual/jdk-1.8:*
|
2015-12-04 19:28:01 +03:00
|
|
|
app-arch/unzip"
|
|
|
|
|
|
|
|
JAVA_SRC_DIR="OSGI-OPT/src"
|
|
|
|
|
2021-12-15 10:55:28 +03:00
|
|
|
src_prepare() {
|
|
|
|
default
|
2015-12-04 19:28:01 +03:00
|
|
|
rm -r org || die
|
|
|
|
}
|