1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00
freebsd-ports/textproc/google-ctemplate/Makefile
Dmitry Marakasov 41aef31a33 - Fix stripping through INSTALL_TARGET
- Switch to new test framework

Approved by:	portmgr blanket
2018-02-17 09:02:54 +00:00

41 lines
1015 B
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= ctemplate
PORTVERSION= 2.3
DISTVERSIONPREFIX= ${PORTNAME}-
CATEGORIES= textproc
PKGNAMEPREFIX= google-
MAINTAINER= vanilla@FreeBSD.org
COMMENT= Simple but powerful template language for C++
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
OPTIONS_DEFINE= DOCS
USES= libtool pathfix pkgconfig python:2.7 shebangfix
GNU_CONFIGURE= yes
SHEBANG_FILES= src/template-converter src/htmlparser/generate_fsm.py src/htmlparser/fsm_config.py
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= OlafvdSpek
INSTALL_TARGET= install-strip
TEST_TARGET= check
post-patch:
@${REINPLACE_CMD} -e \
's|$$(prefix)/share/doc/$$(PACKAGE)-$$(VERSION)|${DOCSDIR}|' \
${WRKSRC}/Makefile.in
# XXX: undefining BSWAP32 breaks builds on big-endian systems for some reason
@${REINPLACE_CMD} -e 's|# undef BSWAP32|//&|' \
${WRKSRC}/src/base/macros.h
post-patch-DOCS-off:
@${REINPLACE_CMD} -e \
'/install-data-am/ s|install-dist_docDATA||' \
${WRKSRC}/Makefile.in
.include <bsd.port.mk>