diff options
author | Tom Wijsman <tomwij@gentoo.org> | 2013-07-05 13:05:59 +0000 |
---|---|---|
committer | Tom Wijsman <tomwij@gentoo.org> | 2013-07-05 13:05:59 +0000 |
commit | f73bff5b31d55b7b7ec905da4614a2748d26f512 (patch) | |
tree | 541b3777ccf21e297641f72f1dd3940d0e0d5479 /dev-java/osgi-compendium | |
parent | New ebuild for dev-java/osgi-foundation, indirect dependency of dev-java/bndl... (diff) | |
download | gentoo-2-f73bff5b31d55b7b7ec905da4614a2748d26f512.tar.gz gentoo-2-f73bff5b31d55b7b7ec905da4614a2748d26f512.tar.bz2 gentoo-2-f73bff5b31d55b7b7ec905da4614a2748d26f512.zip |
New ebuild for dev-java/osgi-compendium, dependency of dev-java/bndlib needed for version bump of =dev-java/commons-vfs-2.0.
(Portage version: 2.1.12.11/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'dev-java/osgi-compendium')
-rw-r--r-- | dev-java/osgi-compendium/ChangeLog | 10 | ||||
-rw-r--r-- | dev-java/osgi-compendium/metadata.xml | 5 | ||||
-rw-r--r-- | dev-java/osgi-compendium/osgi-compendium-4.3.1.ebuild | 37 |
3 files changed, 52 insertions, 0 deletions
diff --git a/dev-java/osgi-compendium/ChangeLog b/dev-java/osgi-compendium/ChangeLog new file mode 100644 index 000000000000..4e02ad225110 --- /dev/null +++ b/dev-java/osgi-compendium/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-java/osgi-compendium +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/osgi-compendium/ChangeLog,v 1.1 2013/07/05 13:05:59 tomwij Exp $ + +*osgi-compendium-4.3.1 (05 Jul 2013) + + 05 Jul 2013; Tom Wijsman <TomWij@gentoo.org> +metadata.xml, + +osgi-compendium-4.3.1.ebuild: + New ebuild for dev-java/osgi-compendium, dependency of dev-java/bndlib needed + for version bump of =dev-java/commons-vfs-2.0. diff --git a/dev-java/osgi-compendium/metadata.xml b/dev-java/osgi-compendium/metadata.xml new file mode 100644 index 000000000000..7303cef96964 --- /dev/null +++ b/dev-java/osgi-compendium/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>java</herd> +</pkgmetadata> diff --git a/dev-java/osgi-compendium/osgi-compendium-4.3.1.ebuild b/dev-java/osgi-compendium/osgi-compendium-4.3.1.ebuild new file mode 100644 index 000000000000..da533de8efab --- /dev/null +++ b/dev-java/osgi-compendium/osgi-compendium-4.3.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/osgi-compendium/osgi-compendium-4.3.1.ebuild,v 1.1 2013/07/05 13:05:59 tomwij Exp $ + +EAPI="5" + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="OSGi Service Platform Compendium API (Companion Code)" +HOMEPAGE="http://www.osgi.org/Specifications/HomePage" +SRC_URI="http://www.osgi.org/download/r4v43/osgi.cmpn-${PV}.jar" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +COMMON_DEPEND="dev-java/glassfish-persistence:0 + dev-java/osgi-core-api:0 + dev-java/osgi-foundation:0 + dev-java/tomcat-servlet-api:3.0" + +DEPEND="${COMMON_DEPEND} + >=virtual/jdk-1.5 + app-arch/unzip" + +RDEPEND="${COMMON_DEPEND} + >=virtual/jre-1.5" + +JAVA_SRC_DIR="OSGI-OPT/src" + +JAVA_GENTOO_CLASSPATH="glassfish-persistence,osgi-core-api,osgi-foundation,tomcat-servlet-api-3.0" + +java_prepare() { + rm -r org || die +} |