From owner-svn-ports-head@freebsd.org Thu Feb 11 22:51:48 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 951BDAA4B2F; Thu, 11 Feb 2016 22:51:48 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E77817C8; Thu, 11 Feb 2016 22:51:48 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1BMplRA043107; Thu, 11 Feb 2016 22:51:47 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1BMplCK043103; Thu, 11 Feb 2016 22:51:47 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201602112251.u1BMplCK043103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 11 Feb 2016 22:51:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408700 - in head/textproc: . tagsoup X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Feb 2016 22:51:48 -0000 Author: jkim Date: Thu Feb 11 22:51:46 2016 New Revision: 408700 URL: https://svnweb.freebsd.org/changeset/ports/408700 Log: TagSoup - Just Keep On Truckin' TagSoup is 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: poor, nasty and brutish, though quite often far from short. TagSoup is designed for people who have to process this stuff using some semblance of a rational application design. By providing a SAX interface, it allows standard XML tools to be applied to even the worst HTML. TagSoup also includes a command-line processor that reads HTML files and can generate either clean HTML or well-formed XML that is a close approximation to XHTML. WWW: http://home.ccil.org/~cowan/tagsoup Added: head/textproc/tagsoup/ head/textproc/tagsoup/Makefile (contents, props changed) head/textproc/tagsoup/distinfo (contents, props changed) head/textproc/tagsoup/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Feb 11 21:17:39 2016 (r408699) +++ head/textproc/Makefile Thu Feb 11 22:51:46 2016 (r408700) @@ -1574,6 +1574,7 @@ SUBDIR += sxml SUBDIR += syck SUBDIR += ta-aspell + SUBDIR += tagsoup SUBDIR += tclExpat SUBDIR += tdhkit SUBDIR += te-aspell Added: head/textproc/tagsoup/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/tagsoup/Makefile Thu Feb 11 22:51:46 2016 (r408700) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= tagsoup +PORTVERSION= 1.2.1 +CATEGORIES= textproc java +MASTER_SITES= http://home.ccil.org/~cowan/tagsoup/ +EXTRACT_SUFX= .jar + +MAINTAINER= java@FreeBSD.org +COMMENT= SAX-compliant parser written in Java + +LICENSE= APACHE20 + +USE_JAVA= yes +JAVA_RUN= jre + +NO_BUILD= yes + +PLIST_FILES= ${JAVAJARDIR}/${PORTNAME}.jar \ + ${JAVAJARDIR}/${PORTNAME}-${PORTVERSION}.jar + +do-extract: + @${DO_NADA} + +do-install: + @${MKDIR} ${STAGEDIR}${JAVAJARDIR} + ${INSTALL_DATA} ${DISTDIR}/${PORTNAME}-${PORTVERSION}.jar \ + ${STAGEDIR}${JAVAJARDIR} + ${LN} -fs ${JAVAJARDIR}/${PORTNAME}-${PORTVERSION}.jar \ + ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar + +.include Added: head/textproc/tagsoup/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/tagsoup/distinfo Thu Feb 11 22:51:46 2016 (r408700) @@ -0,0 +1,2 @@ +SHA256 (tagsoup-1.2.1.jar) = ac97f7b4b1d8e9337edfa0e34044f8d0efe7223f6ad8f3a85d54cc1018ea2e04 +SIZE (tagsoup-1.2.1.jar) = 90722 Added: head/textproc/tagsoup/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/tagsoup/pkg-descr Thu Feb 11 22:51:46 2016 (r408700) @@ -0,0 +1,12 @@ +TagSoup - Just Keep On Truckin' + +TagSoup is 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: poor, +nasty and brutish, though quite often far from short. TagSoup is designed +for people who have to process this stuff using some semblance of a rational +application design. By providing a SAX interface, it allows standard XML +tools to be applied to even the worst HTML. TagSoup also includes +a command-line processor that reads HTML files and can generate either +clean HTML or well-formed XML that is a close approximation to XHTML. + +WWW: http://home.ccil.org/~cowan/tagsoup