summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-09-14 17:23:51 +0200
committerMichał Górny <mgorny@gentoo.org>2019-09-14 17:25:58 +0200
commit3f5838f5cf33468e30c405be27d0784be0b8d379 (patch)
treea54a8cb719ced72e946b58effcfeb2cb471bc234 /dev-java
parentdev-java/flyingsaucer: Remove last-rited pkg (diff)
downloadgentoo-3f5838f5cf33468e30c405be27d0784be0b8d379.tar.gz
gentoo-3f5838f5cf33468e30c405be27d0784be0b8d379.tar.bz2
gentoo-3f5838f5cf33468e30c405be27d0784be0b8d379.zip
dev-java/svgsalamander: Remove last-rited pkg
Bug: https://bugs.gentoo.org/607720 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-java')
-rw-r--r--dev-java/svgsalamander/Manifest1
-rw-r--r--dev-java/svgsalamander/metadata.xml15
-rw-r--r--dev-java/svgsalamander/svgsalamander-0.0-r2.ebuild52
3 files changed, 0 insertions, 68 deletions
diff --git a/dev-java/svgsalamander/Manifest b/dev-java/svgsalamander/Manifest
deleted file mode 100644
index 0831ded73f40..000000000000
--- a/dev-java/svgsalamander/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST svgsalamander-0.0.tar.bz2 2404011 BLAKE2B fd737a90c4988c4e9506223c4cc33bb7b6b5906e1ba3871f903362281e0c745468d909ec39c5e11860b5b200f784a3deb8bbcc20ffaf5454ccf6b2eec5b3dd55 SHA512 70b182d204bac88b33b1c7058c35ae8e83c4ca178829e8c136dee8e1edd9bc6e99dfbd82c8b4c8c556bea110f15dc9e38e7ee266a16cef0ef6792463bb6a8906
diff --git a/dev-java/svgsalamander/metadata.xml b/dev-java/svgsalamander/metadata.xml
deleted file mode 100644
index 7c1dfadbb140..000000000000
--- a/dev-java/svgsalamander/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?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>
- <longdescription lang="en">
- SVG Salamander is an SVG engine for Java that's designed to be small,
- fast, and allow programmers to use it with a minimum of fuss. It's in
- particular targeted for making it easy to integrate SVG into Java games
- and making it much easier for artists to design 2D game content - from
- rich interactive menus to charts and graphcs to complex animations.
- </longdescription>
-</pkgmetadata>
diff --git a/dev-java/svgsalamander/svgsalamander-0.0-r2.ebuild b/dev-java/svgsalamander/svgsalamander-0.0-r2.ebuild
deleted file mode 100644
index 0d406211e7fd..000000000000
--- a/dev-java/svgsalamander/svgsalamander-0.0-r2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-JAVA_PKG_IUSE="doc examples source"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="a SVG engine for Java"
-HOMEPAGE="https://svgsalamander.dev.java.net/"
-# Created from
-# https://svgsalamander.dev.java.net/svn/svgsalamander/tags/release-${PV}
-# with bundled jars removed.
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-CDEPEND="
- dev-java/ant-core:0
- dev-java/javacc:0
-"
-
-RDEPEND="
- ${CDEPEND}
- >=virtual/jre-1.6"
-
-DEPEND="
- ${CDEPEND}
- >=virtual/jdk-1.6"
-
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-
-java_prepare() {
- # Delete these so that we don't need junit
- # They run a dialog any way so not useful for us
- rm -vr test/* || die
-
- cd lib || die
- java-pkg_jar-from --build-only javacc
- java-pkg_jar-from ant-core
-}
-
-src_install() {
- java-pkg_dojar build/jar/*.jar
- java-pkg_register-ant-task
-
- use doc && java-pkg_dojavadoc build/javadoc
- use examples && java-pkg_doexamples examples
- use source && java-pkg_dosrc src/com
-}