dev-java/flute: Removal. Fixes bug 563552.

Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
This commit is contained in:
Patrice Clement
2015-12-02 15:46:21 +00:00
parent d7a7a90286
commit 4f10b65729
5 changed files with 0 additions and 103 deletions

View File

@@ -1 +0,0 @@
DIST flutejava-1.3.zip 270464 SHA256 57abb83e042088a1956d6d92933ff84d6d3839e0b8477b90d77ebce5cbe3e78b SHA512 eff6ee0e863a18ba4a6d4758550cb3df9fdf1a76aadee33d14cef7b067ada06e66841a51511b8cd7f9af6c34b7e229312b223170f95d9003343ba1c0aa75ff32 WHIRLPOOL c09983d49a8a715b9283fc67d0cd7058f4cd21e311e73f986b78ce5633cfa72438740efb1c48c4c4ee4da6479000382d0b7e23cbe6a15c3c34c424c4b0aae6ac

View File

@@ -1,15 +0,0 @@
diff --git a/flute-1.3/org/w3c/flute/parser/Parser.java b/flute-1.3/org/w3c/flute/parser/Parser.java
index 3048834..55fec8b 100644
--- a/flute-1.3/org/w3c/flute/parser/Parser.java
+++ b/flute-1.3/org/w3c/flute/parser/Parser.java
@@ -3497,8 +3497,8 @@ Token language;
jj_expentry[i] = jj_lasttokens[i];
}
boolean exists = false;
- for (java.util.Enumeration enum = jj_expentries.elements(); enum.hasMoreElements();) {
- int[] oldentry = (int[])(enum.nextElement());
+ for (java.util.Enumeration enumeration = jj_expentries.elements(); enumeration.hasMoreElements();) {
+ int[] oldentry = (int[])(enumeration.nextElement());
if (oldentry.length == jj_expentry.length) {
exists = true;
for (int i = 0; i < jj_expentry.length; i++) {

View File

@@ -1,35 +0,0 @@
<?xml version="1.0"?>
<project name="flute" default="jar">
<!-- some properties -->
<property name="src" value="src" />
<property name="build" value="build" />
<property name="dist" value="dist"/>
<property name="jarfile" value="${ant.project.name}.jar"/>
<property file="build.properties"/>
<!-- init -->
<target name="init">
<tstamp/>
<mkdir dir="${dist}"/>
<mkdir dir="${build}"/>
</target>
<!-- compile everything -->
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${build}" classpath="${classpath}"/>
</target>
<!-- build the jar file -->
<target name="jar" depends="compile">
<jar jarfile="${dist}/${jarfile}" basedir="${build}"/>
</target>
<!-- clean up -->
<target name="clean">
<delete dir="${build}"/>
<delete dir="${dist}"/>
</target>
</project>

View File

@@ -1,46 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
JAVA_PKG_IUSE="doc source"
JAVA_ANT_REWRITE_CLASSPATH="true"
EANT_GENTOO_CLASSPATH="sac"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Flute is an implementation for SAC"
HOMEPAGE="http://www.w3.org/Style/CSS/SAC/"
SRC_URI="http://www.w3.org/2002/06/flutejava-${PV}.zip"
LICENSE="W3C"
SLOT="0"
KEYWORDS="amd64 x86 ~x86-fbsd"
IUSE=""
COMMON_DEP="dev-java/sac"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
${COMMON_DEP}
app-arch/unzip"
java_prepare() {
rm -v flute.jar || die
epatch "${FILESDIR}"/${PV}-rename-enum.patch
cp "${FILESDIR}/build.xml" "${S}" || die
mkdir src || die
mv org src || die
}
EANT_DOC_TARGET=""
src_install() {
java-pkg_dojar "${S}"/dist/flute.jar
use doc && java-pkg_dojavadoc doc
use source && java-pkg_dosrc "${S}"/src/*
}

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>java</herd>
</pkgmetadata>