freebsd-ports/textproc/confget/Makefile
Sunpoet Po-Chuan Hsieh 87577437b1 Update to 2.2.0
Changes:	http://devel.ringlet.net/textproc/confget/CHANGES
- add a Python implementation: a confget library that may also be invoked from
  the command line with the same inteface as the C confget tool
- generate the TAP tests automatically from JSON definitions
2019-01-14 15:38:41 +00:00

36 lines
894 B
Makefile

# Created by: Peter Pentchev <roam@FreeBSD.org>
# $FreeBSD$
PORTNAME= confget
PORTVERSION= 2.2.0
CATEGORIES= textproc
MASTER_SITES= https://devel.ringlet.net/files/textproc/confget/ \
LOCAL/sunpoet
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Read variables from INI-style configuration files
LICENSE= BSD2CLAUSE
OPTIONS_DEFINE= EXAMPLES PCRE
OPTIONS_DEFAULT=PCRE
USES= gmake tar:xz
MAKE_ENV= CFLAGS_CONF=-DHAVE_FGETLN
TEST_TARGET= test
PLIST_FILES= bin/confget \
man/man1/confget.1.gz
PORTEXAMPLES= t1.ini t2.ini
PCRE_LIB_DEPENDS= libpcre.so:devel/pcre
PCRE_MAKE_ENV_OFF= PCRE_CFLAGS="" PCRE_LIBS=""
do-install:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/
${INSTALL_PROGRAM} ${WRKSRC}/confget ${STAGEDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/confget.1 ${STAGEDIR}${PREFIX}/man/man1/
cd ${WRKSRC}/t/ && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/
.include <bsd.port.mk>