Date: Sun, 13 Dec 2015 08:49:53 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403658 - in head/converters: . xml2c Message-ID: <201512130849.tBD8nre6062907@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sun Dec 13 08:49:53 2015 New Revision: 403658 URL: https://svnweb.freebsd.org/changeset/ports/403658 Log: New port: converters/xml2c xml2c reads in an XML file and produces equivalent C source code, suitable for #including in your program. WWW: http://www.acme.com/software/xml2c/ PR: 204191 Submitted by: Neel Chauhan <neel@neelc.org> Added: head/converters/xml2c/ head/converters/xml2c/Makefile (contents, props changed) head/converters/xml2c/distinfo (contents, props changed) head/converters/xml2c/pkg-descr (contents, props changed) Modified: head/converters/Makefile Modified: head/converters/Makefile ============================================================================== --- head/converters/Makefile Sun Dec 13 08:47:02 2015 (r403657) +++ head/converters/Makefile Sun Dec 13 08:49:53 2015 (r403658) @@ -168,6 +168,7 @@ SUBDIR += vda2fbd SUBDIR += wkhtmltopdf SUBDIR += xdeview + SUBDIR += xml2c SUBDIR += ytnef SUBDIR += zbase32 Added: head/converters/xml2c/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/xml2c/Makefile Sun Dec 13 08:49:53 2015 (r403658) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= xml2c +PORTVERSION= 20151019 +CATEGORIES= converters +MASTER_SITES= http://acme.com/software/xml2c/ +DISTNAME= ${PORTNAME}_19Oct2015 + +MAINTAINER= neel@neelc.org +COMMENT= Reads in an XML file and produces equivalent C source code + +LICENSE= BSD2CLAUSE + +USE_GNOME= libxml2 + +WRKSRC= ${WRKDIR}/${PORTNAME} +PLIST_FILES= bin/xml2c man/man1/xml2c.1.gz + +#MAKEFILE= /dev/null +ALL_TARGET= ${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/xml2c ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/xml2c.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/xml2c.1 + +.include <bsd.port.mk> Added: head/converters/xml2c/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/xml2c/distinfo Sun Dec 13 08:49:53 2015 (r403658) @@ -0,0 +1,2 @@ +SHA256 (xml2c_19Oct2015.tar.gz) = 29129966413119e1a070ac3495368e992eb2f99dda6be9143fd96265a6ac183d +SIZE (xml2c_19Oct2015.tar.gz) = 6716 Added: head/converters/xml2c/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/xml2c/pkg-descr Sun Dec 13 08:49:53 2015 (r403658) @@ -0,0 +1,4 @@ +xml2c reads in an XML file and produces equivalent C source code, +suitable for #including in your program. + +WWW: http://www.acme.com/software/xml2c/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512130849.tBD8nre6062907>