ports/devel/cpp-hocon/Makefile
Romain Tartière 1224de33e4 Fix build when gettext is installed
When building, if gettext(1) is found, CMake generates rules to update the
cpp-hocon.pot translation file.  However, the generated rules for ninja(1) are
broken and break the build.

Always rely on regular make(1) in order to avoid this situation.

Not bumping PORTREVISION since successfully built packages are not affected by
this change.

Reported by:	marius.schuller@makandra.de (by mail to puppet@)
2018-02-14 13:27:13 +00:00

28 lines
501 B
Makefile

# $FreeBSD$
PORTNAME= cpp-hocon
PORTVERSION= 0.1.6
PORTREVISION= 4
CATEGORIES= devel
MAINTAINER= puppet@FreeBSD.org
COMMENT= C++ configuration library
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libboost_system.so:devel/boost-libs \
libleatherman_util.so:devel/leatherman
USE_GITHUB= yes
GH_ACCOUNT= puppetlabs
PLIST_SUB+= PORTVERSION="${PORTVERSION}"
CMAKE_ARGS+= -DBUILD_SHARED_LIBS=SHARED
TEST_TARGET= test
USES= cmake:noninja
USE_LDCONFIG= yes
.include <bsd.port.mk>