Date: Wed, 11 Mar 2015 16:57:29 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r381023 - in head/devel: . gumbo Message-ID: <201503111657.t2BGvTCP008555@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Wed Mar 11 16:57:28 2015 New Revision: 381023 URL: https://svnweb.freebsd.org/changeset/ports/381023 QAT: https://qat.redports.org/buildarchive/r381023/ Log: Add devel/gumbo Gumbo is an implementation of the HTML5 parsing algorithm implemented as a pure C99 library with no outside dependencies. It's designed to serve as a building block for other tools and libraries such as linters, validators, templating languages, and refactoring and analysis tools. WWW: https://github.com/google/gumbo-parser Added: head/devel/gumbo/ head/devel/gumbo/Makefile (contents, props changed) head/devel/gumbo/distinfo (contents, props changed) head/devel/gumbo/pkg-descr (contents, props changed) head/devel/gumbo/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Mar 11 16:12:30 2015 (r381022) +++ head/devel/Makefile Wed Mar 11 16:57:28 2015 (r381023) @@ -632,6 +632,7 @@ SUBDIR += gtgt SUBDIR += gtkparasite SUBDIR += gtranslator + SUBDIR += gumbo SUBDIR += guichan SUBDIR += guikachu SUBDIR += guile-lib Added: head/devel/gumbo/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gumbo/Makefile Wed Mar 11 16:57:28 2015 (r381023) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= gumbo +PORTVERSION= 0.9.3 +CATEGORIES= devel textproc + +MAINTAINER= bdrewery@FreeBSD.org +COMMENT= Pure-C HTML5 parser + +LICENSE= APACHE20 + +USE_GITHUB= yes +GH_ACCOUNT= google +GH_PROJECT= gumbo-parser +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 4a63d99 + +USES= autoreconf gmake pathfix libtool +INSTALL_TARGET= install-strip +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +PATHFIX_MAKEFILEIN=Makefile.am + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgumbo.so.1.0.0 + +.include <bsd.port.mk> Added: head/devel/gumbo/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gumbo/distinfo Wed Mar 11 16:57:28 2015 (r381023) @@ -0,0 +1,2 @@ +SHA256 (gumbo-0.9.3.tar.gz) = bae401ae139ca1697db60d1642e02ef455349e61620ca16c7a47e52976ecac5b +SIZE (gumbo-0.9.3.tar.gz) = 2091664 Added: head/devel/gumbo/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gumbo/pkg-descr Wed Mar 11 16:57:28 2015 (r381023) @@ -0,0 +1,6 @@ +Gumbo is an implementation of the HTML5 parsing algorithm implemented as a pure +C99 library with no outside dependencies. It's designed to serve as a building +block for other tools and libraries such as linters, validators, templating +languages, and refactoring and analysis tools. + +WWW: https://github.com/google/gumbo-parser Added: head/devel/gumbo/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gumbo/pkg-plist Wed Mar 11 16:57:28 2015 (r381023) @@ -0,0 +1,6 @@ +include/gumbo.h +lib/libgumbo.a +lib/libgumbo.so +lib/libgumbo.so.1 +lib/libgumbo.so.1.0.0 +libdata/pkgconfig/gumbo.pc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503111657.t2BGvTCP008555>