mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-26 08:55:57 +02:00
Commit #c6cddc1527
was wrong. Both SRC_URI and MAVEN_ID point to 938.
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/39668/commits/83a9d7a64111378782d83bfb50349d3912109f02
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
34 lines
763 B
Bash
34 lines
763 B
Bash
# Copyright 2023-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
MAVEN_ID="net.sf.jtidy:jtidy:r${PV}"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="a Java port of HTML Tidy, a HTML syntax checker and pretty printer"
|
|
HOMEPAGE="https://sourceforge.net/projects/jtidy/"
|
|
SRC_URI="https://downloads.sourceforge.net/project/jtidy/JTidy/r${PV}/jtidy-r${PV}-sources.zip"
|
|
|
|
LICENSE="HTML-Tidy W3C"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc64"
|
|
|
|
BDEPEND="app-arch/unzip"
|
|
CP_DEPEND=">=dev-java/ant-1.10.15:0"
|
|
|
|
DEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jdk-1.8:*
|
|
"
|
|
|
|
RDEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jre-1.8:*
|
|
"
|
|
|
|
JAVA_MAIN_CLASS="org.w3c.tidy.Tidy"
|
|
JAVA_RESOURCE_DIRS="src/main/resources"
|
|
JAVA_SRC_DIR="src/main/java"
|