aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Schmaus <flow@gentoo.org>2021-06-30 11:34:50 +0200
committerFlorian Schmaus <flow@gentoo.org>2021-06-30 11:35:29 +0200
commit490753cfbc788399e9d725203c4d17646cc57e4f (patch)
tree28e98b00beb5eb58eb5a2c0a5a4f36cc96aba6ca
parentdev-java/rife-continuations: treeclean (diff)
downloadjava-490753cfbc788399e9d725203c4d17646cc57e4f.tar.gz
java-490753cfbc788399e9d725203c4d17646cc57e4f.tar.bz2
java-490753cfbc788399e9d725203c4d17646cc57e4f.zip
dev-java/smoothmetal: treeclean
Reason: failed sourcing ebuild: eutils: EAPI 0 not supported, (eutils.eclass, line 32: called die) Bug: https://bugs.gentoo.org/759889 Signed-off-by: Florian Schmaus <flow@gentoo.org>
-rw-r--r--dev-java/smoothmetal/Manifest1
-rw-r--r--dev-java/smoothmetal/metadata.xml8
-rw-r--r--dev-java/smoothmetal/smoothmetal-1.1.ebuild34
3 files changed, 0 insertions, 43 deletions
diff --git a/dev-java/smoothmetal/Manifest b/dev-java/smoothmetal/Manifest
deleted file mode 100644
index c3422013..00000000
--- a/dev-java/smoothmetal/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST smoothmetal-1.1.zip 771816 SHA256 287484dba6cf87b67272ff7c2167b66455739b909be52cc589d7f1a8e6f55cb6
diff --git a/dev-java/smoothmetal/metadata.xml b/dev-java/smoothmetal/metadata.xml
deleted file mode 100644
index 2444066a..00000000
--- a/dev-java/smoothmetal/metadata.xml
+++ /dev/null
@@ -1,8 +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>
-</pkgmetadata>
diff --git a/dev-java/smoothmetal/smoothmetal-1.1.ebuild b/dev-java/smoothmetal/smoothmetal-1.1.ebuild
deleted file mode 100644
index 83d0fd6b..00000000
--- a/dev-java/smoothmetal/smoothmetal-1.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-JAVA_PKG_IUSE="doc source"
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="A wrapper for some of Sun's Java Look and Feels to enable anti-aliasing."
-HOMEPAGE="http://smoothmetal.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-EANT_BUILD_TARGET="dist"
-S=${WORKDIR}
-
-RDEPEND=">=virtual/jre-1.4"
-DEPEND=">=virtual/jdk-1.4
- app-arch/unzip"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- rm -rf dist
- rm -rf docs
-}
-
-src_install() {
- java-pkg_dojar dist/smoothmetal.jar
- use doc && java-pkg_dohtml -r docs/api
- use source && java-pkg_dosrc src/*
-}