diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-02-28 05:26:41 +0800 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-02-28 05:26:41 +0800 |
commit | c43d8da5f4e640477e7af04879b26ca56e12a68c (patch) | |
tree | 26c024cbba31e47f1262666adacafc35c8eab80a /converters | |
parent | 189fd73d359571c3166a15e831abb0e8cba5c9e6 (diff) | |
download | freebsd-ports-gnome-c43d8da5f4e640477e7af04879b26ca56e12a68c.tar.gz freebsd-ports-gnome-c43d8da5f4e640477e7af04879b26ca56e12a68c.tar.zst freebsd-ports-gnome-c43d8da5f4e640477e7af04879b26ca56e12a68c.zip |
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)
Diffstat (limited to 'converters')
-rw-r--r-- | converters/xml2c/Makefile | 15 | ||||
-rw-r--r-- | converters/xml2c/pkg-descr | 10 |
2 files changed, 14 insertions, 11 deletions
diff --git a/converters/xml2c/Makefile b/converters/xml2c/Makefile index dc584e7d9877..9619774df6d9 100644 --- a/converters/xml2c/Makefile +++ b/converters/xml2c/Makefile @@ -3,25 +3,24 @@ PORTNAME= xml2c PORTVERSION= 20151019 CATEGORIES= converters -MASTER_SITES= http://acme.com/software/xml2c/ +MASTER_SITES= https://acme.com/software/xml2c/ DISTNAME= ${PORTNAME}_19Oct2015 -MAINTAINER= neel@neelc.org -COMMENT= Reads in an XML file and produces equivalent C source code +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Convert an XML file into C struct/string declarations LICENSE= BSD2CLAUSE USES= gnome USE_GNOME= libxml2 -WRKSRC= ${WRKDIR}/${PORTNAME} -PLIST_FILES= bin/xml2c man/man1/xml2c.1.gz +WRKSRC= ${WRKDIR}/xml2c -#MAKEFILE= /dev/null -ALL_TARGET= ${PORTNAME} +PLIST_FILES= bin/xml2c \ + share/man/man1/xml2c.1.gz do-install: ${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> diff --git a/converters/xml2c/pkg-descr b/converters/xml2c/pkg-descr index 9c171dbb9deb..66d224c8969e 100644 --- a/converters/xml2c/pkg-descr +++ b/converters/xml2c/pkg-descr @@ -1,4 +1,8 @@ -xml2c reads in an XML file and produces equivalent C source code, -suitable for #including in your program. +xml2c reads in an XML file and produces equivalent C source code, suitable for +#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/ |