dev-java/jtidy: EAPI 8, min java 1.8:*

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/24260
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Volkmar W. Pogatzki
2022-02-18 21:39:02 +01:00
committed by Miroslav Šulc
parent 779baa26ec
commit eeba2d8067
2 changed files with 56 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
--- build.xml.orig 2015-12-01 21:10:36.689000000 +0000
+++ build.xml 2015-12-01 21:11:05.642000000 +0000
--- a/build.xml.orig 2015-12-01 21:10:36.689000000 +0000
+++ b/build.xml 2015-12-01 21:11:05.642000000 +0000
@@ -9,11 +9,7 @@
<property name="srczip" value="jtidy-${version}-sources.zip"/>
<property name="allzip" value="jtidy-${version}.zip"/>

View File

@@ -0,0 +1,54 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
MY_PV="r938"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="Java port of HTML Tidy, an HTML syntax checker and pretty printer"
HOMEPAGE="http://jtidy.sourceforge.net/"
SRC_URI="mirror://sourceforge/project/${PN}/JTidy/${MY_PV}/${PN}-${MY_PV}-sources.zip -> ${P}.zip"
LICENSE="HTML-Tidy W3C"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
CDEPEND="dev-java/ant-core:0"
DEPEND="
${CDEPEND}
>=virtual/jdk-1.8:*"
RDEPEND="
${CDEPEND}
>=virtual/jre-1.8:*"
BDEPEND="
app-arch/unzip"
JAVA_ANT_ENCODING="UTF-8"
JAVA_ANT_REWRITE_CLASSPATH="yes"
EANT_GENTOO_CLASSPATH="ant-core"
EANT_BUILD_TARGET="jar"
S="${WORKDIR}"
PATCHES=(
"${FILESDIR}"/"${P}-build.xml.patch"
)
src_prepare() {
default
}
src_install() {
java-pkg_newjar "target/${MY_P}.jar"
java-pkg_dolauncher "jtidy" --main org.w3c.tidy.Tidy
use doc && java-pkg_dojavadoc target/javadoc/
use source && java-pkg_dosrc src/main/java
}