mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
Reset maintainership
- While I'm here: - Update MASTER_SITES - Clean up Makefile - Update manpage location (r523104) - Update pkg-descr - Update WWW - Take maintainership PR: 244451 Submitted by: Neel Chauhan <neel@neelc.org> (maintainer)
This commit is contained in:
parent
189fd73d35
commit
c43d8da5f4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=527303
@ -3,25 +3,24 @@
|
|||||||
PORTNAME= xml2c
|
PORTNAME= xml2c
|
||||||
PORTVERSION= 20151019
|
PORTVERSION= 20151019
|
||||||
CATEGORIES= converters
|
CATEGORIES= converters
|
||||||
MASTER_SITES= http://acme.com/software/xml2c/
|
MASTER_SITES= https://acme.com/software/xml2c/
|
||||||
DISTNAME= ${PORTNAME}_19Oct2015
|
DISTNAME= ${PORTNAME}_19Oct2015
|
||||||
|
|
||||||
MAINTAINER= neel@neelc.org
|
MAINTAINER= sunpoet@FreeBSD.org
|
||||||
COMMENT= Reads in an XML file and produces equivalent C source code
|
COMMENT= Convert an XML file into C struct/string declarations
|
||||||
|
|
||||||
LICENSE= BSD2CLAUSE
|
LICENSE= BSD2CLAUSE
|
||||||
|
|
||||||
USES= gnome
|
USES= gnome
|
||||||
USE_GNOME= libxml2
|
USE_GNOME= libxml2
|
||||||
|
|
||||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
WRKSRC= ${WRKDIR}/xml2c
|
||||||
PLIST_FILES= bin/xml2c man/man1/xml2c.1.gz
|
|
||||||
|
|
||||||
#MAKEFILE= /dev/null
|
PLIST_FILES= bin/xml2c \
|
||||||
ALL_TARGET= ${PORTNAME}
|
share/man/man1/xml2c.1.gz
|
||||||
|
|
||||||
do-install:
|
do-install:
|
||||||
${INSTALL_PROGRAM} ${WRKSRC}/xml2c ${STAGEDIR}${PREFIX}/bin
|
${INSTALL_PROGRAM} ${WRKSRC}/xml2c ${STAGEDIR}${PREFIX}/bin
|
||||||
${INSTALL_MAN} ${WRKSRC}/xml2c.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/xml2c.1
|
${INSTALL_MAN} ${WRKSRC}/xml2c.1 ${STAGEDIR}${MAN1PREFIX}/share/man/man1/xml2c.1
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
xml2c reads in an XML file and produces equivalent C source code,
|
xml2c reads in an XML file and produces equivalent C source code, suitable for
|
||||||
suitable for #including in your program.
|
#including in your program. The C version is probably easier deal with in your
|
||||||
|
code. You don't have to read and parse the XML file and then look for the nodes
|
||||||
|
you want; instead you just loop through a bunch of structs. Or maybe you just
|
||||||
|
don't want to distribute extra files with your app, and would rather build them
|
||||||
|
into the executable.
|
||||||
|
|
||||||
WWW: http://www.acme.com/software/xml2c/
|
WWW: https://acme.com/software/xml2c/
|
||||||
|
Loading…
Reference in New Issue
Block a user