diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /dev-java/eclipsito | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'dev-java/eclipsito')
| -rw-r--r-- | dev-java/eclipsito/Manifest | 2 | ||||
| -rw-r--r-- | dev-java/eclipsito/eclipsito-0_pre20130713.ebuild | 32 | ||||
| -rw-r--r-- | dev-java/eclipsito/eclipsito-20180510.ebuild | 28 | ||||
| -rw-r--r-- | dev-java/eclipsito/files/eclipsito-0_pre20130713-build.xml | 36 | ||||
| -rw-r--r-- | dev-java/eclipsito/metadata.xml | 9 |
5 files changed, 107 insertions, 0 deletions
diff --git a/dev-java/eclipsito/Manifest b/dev-java/eclipsito/Manifest new file mode 100644 index 000000000000..e083d5b40a15 --- /dev/null +++ b/dev-java/eclipsito/Manifest @@ -0,0 +1,2 @@ +DIST eclipsito-0_pre20130713.tar.xz 162972 BLAKE2B 193a3b2c4bee39bfb87c49eb8b077804d26ef1f84a1dc2c3546d235ab6fa8f86340c943b1a5ce1044dcd5681751d856a044d75866717a0c976e82c86ae8a1ab1 SHA512 b238692950bc93059fb16df8e6301669583185976ae4f12519d1917a13fea2b53c5b3462f2da61d63025019eee10037a3a96b2ac742545d61b80f2ab7964d41b +DIST eclipsito-20180510.tar.gz 66661 BLAKE2B 0cd1879314eaf4acfcb26cd37f27c50208263cc584d15cb19cfee4d75b29e925d7840be6f39fdf2b6aa05d26f1497284d2d772f9a42ea81398aeec9b1ebad029 SHA512 420cc4ed44fc80065452b39350625f5621175e0bd2aae1ba38a409134bd92af23b492c01f826234431fec68e09eecdf47d61a06f02338e5998c2c5cad44fd142 diff --git a/dev-java/eclipsito/eclipsito-0_pre20130713.ebuild b/dev-java/eclipsito/eclipsito-0_pre20130713.ebuild new file mode 100644 index 000000000000..6625ce2e9267 --- /dev/null +++ b/dev-java/eclipsito/eclipsito-0_pre20130713.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +JAVA_PKG_IUSE="doc source" + +inherit eutils java-pkg-2 java-ant-2 + +DESCRIPTION="A small subset of Eclipse core libraries for modular applications" +HOMEPAGE="https://code.google.com/p/eclipsito/" +SRC_URI="https://dev.gentoo.org/~tomwij/files/dist/${P}.tar.xz" + +LICENSE="EPL-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=virtual/jre-1.5" +DEPEND=">=virtual/jdk-1.5" + +S="${WORKDIR}/${PN}/org.bardsoftware.${PN}" + +java_prepare() { + epatch "${FILESDIR}"/${P}-build.xml +} + +src_install() { + java-pkg_dojar ${PN}.jar + + use doc && java-pkg_dojavadoc apidocs + use source && java-pkg_dosrc src/ +} diff --git a/dev-java/eclipsito/eclipsito-20180510.ebuild b/dev-java/eclipsito/eclipsito-20180510.ebuild new file mode 100644 index 000000000000..2c5cf97ca604 --- /dev/null +++ b/dev-java/eclipsito/eclipsito-20180510.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +JAVA_PKG_IUSE="doc source" + +COMMIT="0eb2fbb739898f55265027c2796f77fbee9f4ab2" + +inherit java-pkg-2 java-pkg-simple vcs-snapshot + +DESCRIPTION="A small subset of Eclipse core libraries for modular applications" +HOMEPAGE="https://github.com/bardsoftware/eclipsito" +SRC_URI="https://github.com/bardsoftware/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="EPL-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=virtual/jre-1.8" +DEPEND=">=virtual/jdk-1.8" + +S="${WORKDIR}/${P}/org.bardsoftware.${PN}" + +src_prepare() { + default + rm -r src/org/bardsoftware/test || die +} diff --git a/dev-java/eclipsito/files/eclipsito-0_pre20130713-build.xml b/dev-java/eclipsito/files/eclipsito-0_pre20130713-build.xml new file mode 100644 index 000000000000..c6055e5525c3 --- /dev/null +++ b/dev-java/eclipsito/files/eclipsito-0_pre20130713-build.xml @@ -0,0 +1,36 @@ +diff --git a/build.xml b/build.xml +index d89485a..7be5431 100644 +--- a/build.xml ++++ b/build.xml +@@ -17,4 +17,31 @@ + <target depends="build" name="jar"> + <jar destfile="eclipsito.jar" basedir="bin" compress="yes"/> + </target> ++ ++ <target name="javadoc" description="Generates the Javadoc of the application"> ++ <javadoc sourcepath="src" ++ packagenames="*" ++ destdir="apidocs" ++ access="protected" ++ old="false" ++ verbose="false" ++ encoding="UTF-8" ++ version="true" ++ use="true" ++ author="true" ++ splitindex="false" ++ nodeprecated="false" ++ nodeprecatedlist="false" ++ notree="false" ++ noindex="false" ++ nohelp="false" ++ nonavbar="false" ++ serialwarn="false" ++ charset="ISO-8859-1" ++ docencoding="UTF-8" ++ source="1.5" ++ linksource="true" ++ breakiterator="false"> ++ </javadoc> ++ </target> + </project> diff --git a/dev-java/eclipsito/metadata.xml b/dev-java/eclipsito/metadata.xml new file mode 100644 index 000000000000..b866ad3cfddf --- /dev/null +++ b/dev-java/eclipsito/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="project"> + <email>java@gentoo.org</email> + <name>Java</name> +</maintainer> + <origin>gentoo-staging</origin> +</pkgmetadata> |
