- Fix build with clang (CFLAGS+=-Wno-error=implicit-function-declaration)
- USE_GMAKE=yes -> USES=gmake - Remove the indefinite article from COMMENT - Remove --mandir from CONFIGURE_ARGS (already set in bsd.port.mk) - Use new syntax at LIB_DEPENDS - Include <bsd.port.options.mk> instead of <bsd.port.pre.mk> - Place unconditionned statements before those conditions - Remove LATEST_LINK. PKGNAMESUFFIX is already set. PR: ports/181618 Submitted by: bsam Approved by: maintainer timeout (7 weeks)
This commit is contained in:
parent
f88a78b9c9
commit
8ddbe17948
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=330863
1 changed files with 40 additions and 40 deletions
|
@ -3,34 +3,34 @@
|
|||
|
||||
PORTNAME= cfengine
|
||||
PORTVERSION= 3.3.8
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= http://cfengine.com/source-code/download?file=
|
||||
PKGNAMESUFFIX= 33
|
||||
|
||||
MAINTAINER= cy@FreeBSD.org
|
||||
# gjb@FreeBSD.org is also committer for this port
|
||||
COMMENT= A systems administration tool for networks
|
||||
LATEST_LINK= cfengine33
|
||||
COMMENT= Systems administration tool for networks
|
||||
|
||||
FETCH_BEFORE_ARGS= -o ${DISTDIR}/${DISTFILES}
|
||||
|
||||
CONFLICTS= cfengine-2* cfengine-3.[245]* cfengine-devel-*
|
||||
|
||||
USE_RC_SUBR= cf-execd cf-serverd
|
||||
|
||||
USES= gmake
|
||||
USE_LDCONFIG= yes
|
||||
USE_OPENSSL= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
# EXAMPLESDIR= ${PREFIX}/share/examples/cfengine3
|
||||
DOCSDIR= ${PREFIX}/share/doc/cfengine
|
||||
CONFIGURE_ARGS= --docdir=${DOCSDIR} \
|
||||
--htmldir=${DOCSDIR}/html \
|
||||
--mandir=${PREFIX}/man \
|
||||
--with-pcre=${LOCALBASE} \
|
||||
--enable-fhs
|
||||
CFLAGS+= -Wno-error=implicit-function-declaration
|
||||
|
||||
LIB_DEPENDS+= pcre.3:${PORTSDIR}/devel/pcre
|
||||
LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre
|
||||
|
||||
OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT
|
||||
OPTIONS_SINGLE= DB
|
||||
|
@ -42,43 +42,43 @@ MYSQL_DESC= Enable MySQL integration
|
|||
LIBVIRT_DESC= Enable libvirt integration
|
||||
OPTIONS_DEFAULT=TOKYOCABINET
|
||||
|
||||
NO_STAGE= yes
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MTOKYOCABINET}
|
||||
CONFIGURE_ARGS+= --with-tokyocabinet=${LOCALBASE}
|
||||
LIB_DEPENDS+= tokyocabinet.9:${PORTSDIR}/databases/tokyocabinet
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MQDBM}
|
||||
CONFIGURE_ARGS+= --with-qdbm=${LOCALBASE}
|
||||
LIB_DEPENDS+= qdbm.14:${PORTSDIR}/databases/qdbm
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MPGSQL}
|
||||
USE_PGSQL= yes
|
||||
CONFIGURE_ARGS+= --with-postgresql=${LOCALBASE}
|
||||
LIB_DEPENDS+= pq:${PORTSDIR}/databases/postgresql${PGSQL_VER}-client
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MMYSQL}
|
||||
USE_MYSQL= yes
|
||||
CONFIGURE_ARGS+= --with-mysql=${LOCALBASE}
|
||||
LIB_DEPENDS+= mysqlclient:${PORTSDIR}/${_MYSQL_CLIENT}
|
||||
LDFLAGS+= -L${LOCALBASE}/lib/mysql
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MLIBVIRT}
|
||||
CONFIGURE_ARGS+= --with-libvirt=${LOCALBASE}
|
||||
LIB_DEPENDS+= virt.1001:${PORTSDIR}/devel/libvirt
|
||||
.endif
|
||||
|
||||
MAN8= cf-agent.8 cf-key.8 cf-monitord.8 \
|
||||
cf-report.8 cf-serverd.8 cf-execd.8 \
|
||||
cf-know.8 cf-promises.8 cf-runagent.8
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e '/^htmldir/s!=.*!= @htmldir@!'\
|
||||
${WRKSRC}/docs/Makefile.in
|
||||
@${REINPLACE_CMD} -e '/^htmldir/s!=.*!= @htmldir@!' \
|
||||
${WRKSRC}/docs/Makefile.in
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
NO_STAGE= yes
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MTOKYOCABINET}
|
||||
CONFIGURE_ARGS+= --with-tokyocabinet=${LOCALBASE}
|
||||
LIB_DEPENDS+= libtokyocabinet.so:${PORTSDIR}/databases/tokyocabinet
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MQDBM}
|
||||
CONFIGURE_ARGS+= --with-qdbm=${LOCALBASE}
|
||||
LIB_DEPENDS+= libqdbm.so:${PORTSDIR}/databases/qdbm
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MPGSQL}
|
||||
USE_PGSQL= yes
|
||||
CONFIGURE_ARGS+= --with-postgresql=${LOCALBASE}
|
||||
LIB_DEPENDS+= libpq.so:${PORTSDIR}/databases/postgresql${PGSQL_VER}-client
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MMYSQL}
|
||||
USE_MYSQL= yes
|
||||
CONFIGURE_ARGS+= --with-mysql=${LOCALBASE}
|
||||
LIB_DEPENDS+= libmysqlclient.so:${PORTSDIR}/${_MYSQL_CLIENT}
|
||||
LDFLAGS+= -L${LOCALBASE}/lib/mysql
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MLIBVIRT}
|
||||
CONFIGURE_ARGS+= --with-libvirt=${LOCALBASE}
|
||||
LIB_DEPENDS+= libvirt.so:${PORTSDIR}/devel/libvirt
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
Loading…
Reference in a new issue