1
0
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:
Sunpoet Po-Chuan Hsieh 2020-02-27 21:26:41 +00:00
parent 189fd73d35
commit c43d8da5f4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=527303
2 changed files with 14 additions and 11 deletions

View File

@ -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>

View File

@ -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/