diff options
author | Thomas Matthijs <axxo@gentoo.org> | 2004-09-19 15:08:22 +0000 |
---|---|---|
committer | Thomas Matthijs <axxo@gentoo.org> | 2004-09-19 15:08:22 +0000 |
commit | 480569630b23a5794a10afe6ebf3b0cbbb0e69b8 (patch) | |
tree | a2fe803a03ea68f3c893db1960f009c68e4bf47e /dev-java | |
parent | initial import, ebuild created by me as a dep (Manifest recommit) (diff) | |
download | gentoo-2-480569630b23a5794a10afe6ebf3b0cbbb0e69b8.tar.gz gentoo-2-480569630b23a5794a10afe6ebf3b0cbbb0e69b8.tar.bz2 gentoo-2-480569630b23a5794a10afe6ebf3b0cbbb0e69b8.zip |
initial import, ebuild created by me as a dep
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/tagsoup/ChangeLog | 10 | ||||
-rw-r--r-- | dev-java/tagsoup/Manifest | 3 | ||||
-rw-r--r-- | dev-java/tagsoup/files/digest-tagsoup-0.10.2 | 1 | ||||
-rw-r--r-- | dev-java/tagsoup/metadata.xml | 8 | ||||
-rw-r--r-- | dev-java/tagsoup/tagsoup-0.10.2.ebuild | 33 |
5 files changed, 55 insertions, 0 deletions
diff --git a/dev-java/tagsoup/ChangeLog b/dev-java/tagsoup/ChangeLog new file mode 100644 index 000000000000..8ace4bdd9715 --- /dev/null +++ b/dev-java/tagsoup/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-java/tagsoup +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/tagsoup/ChangeLog,v 1.1 2004/09/19 15:08:22 axxo Exp $ + +*tagsoup-0.10.2 (19 Sep 2004) + + 19 Sep 2004; Thomas Matthijs <axxo@gentoo.org> +metadata.xml, + +tagsoup-0.10.2.ebuild: + initial import, ebuild created by me as a dep + diff --git a/dev-java/tagsoup/Manifest b/dev-java/tagsoup/Manifest new file mode 100644 index 000000000000..bb1954201f82 --- /dev/null +++ b/dev-java/tagsoup/Manifest @@ -0,0 +1,3 @@ +MD5 28287f479ebe718c17f9c6feba74b0ef tagsoup-0.10.2.ebuild 901 +MD5 4dad079a28768d183022cff420f01281 metadata.xml 220 +MD5 e5ace201a33ef7217b14c883e651c546 files/digest-tagsoup-0.10.2 66 diff --git a/dev-java/tagsoup/files/digest-tagsoup-0.10.2 b/dev-java/tagsoup/files/digest-tagsoup-0.10.2 new file mode 100644 index 000000000000..95e272b60e49 --- /dev/null +++ b/dev-java/tagsoup/files/digest-tagsoup-0.10.2 @@ -0,0 +1 @@ +MD5 3539441a49308924378ee9fea05bd6af tagsoup-0.10.2-src.zip 63115 diff --git a/dev-java/tagsoup/metadata.xml b/dev-java/tagsoup/metadata.xml new file mode 100644 index 000000000000..e220c8b8a3f3 --- /dev/null +++ b/dev-java/tagsoup/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>java</herd> + <maintainer> + <email>axxo@gentoo.org</email> + </maintainer> +</pkgmetadata> diff --git a/dev-java/tagsoup/tagsoup-0.10.2.ebuild b/dev-java/tagsoup/tagsoup-0.10.2.ebuild new file mode 100644 index 000000000000..2da25b40e0f7 --- /dev/null +++ b/dev-java/tagsoup/tagsoup-0.10.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/tagsoup/tagsoup-0.10.2.ebuild,v 1.1 2004/09/19 15:08:22 axxo Exp $ + +inherit java-pkg + +DESCRIPTION="This is the home page of TagSoup, a SAX-compliant parser written in +Java that, instead of parsing well-formed or valid XML, parses HTML as it is +found in the wild: nasty and brutish, though quite often far from short." + +HOMEPAGE="http://mercury.ccil.org/~cowan/XML/tagsoup/" +SRC_URI="http://mercury.ccil.org/~cowan/XML/tagsoup/${P}-src.zip" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="doc" +DEPEND=">=virtual/jdk-1.4 + dev-java/ant" +RDEPEND=">=virtual/jre-1.4" + +src_compile() { + local antflags="dist" + use doc && antflags="${antflags} docs-api" + ant ${antflags} || die "compile failed" +} + +src_install() { + mv dist/lib/${P}.jar dist/lib/${PN}.jar + java-pkg_dojar dist/lib/${PN}.jar + + dodoc CHANGES LICENSE README TODO + use doc && dohtml -r docs/* +} |