You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/jtidy/jtidy-1.0.ebuild

53 lines
1.0 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
MY_PV="r938"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="Tidy is a Java port of HTML Tidy , a HTML syntax checker and pretty printer"
HOMEPAGE="http://jtidy.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}-sources.zip -> ${P}.zip"
LICENSE="HTML-Tidy W3C"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
CDEPEND="dev-java/ant-core:0"
DEPEND="
${CDEPEND}
app-arch/unzip
>=virtual/jdk-1.6"
RDEPEND="
${CDEPEND}
>=virtual/jre-1.6"
JAVA_ANT_REWRITE_CLASSPATH="yes"
EANT_GENTOO_CLASSPATH="ant-core"
EANT_BUILD_TARGET="jar"
S="${WORKDIR}"
PATCHES=(
"${FILESDIR}"/"${P}-build.xml.patch"
)
java_prepare() {
epatch "${PATCHES[@]}"
}
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
}