Glen Barber 1735026060 - Update to 3.5.0a2
New features:
- cf-promises flag --parse-tree is replaced by
  --policy-output-format=, requiring the user to
  specify the output format (none, cf, json)

- cf-promises allows partial check of policy (without
  body common control) without integrity check;
  --full-check enforces integrity check

- agent binaries support JSON input format (.json
  file as generated by cf-promises)

- cf-key: new options --trust-key/-t and --print-digest/-p

- Class "failsafe_fallback" is defined in failsafe.cf when
  main policy contains errors and failsafe is run because
  of this

- add scope attribute for body classes (Redmine #2013)

Changes:

- process promises don't log if processes are out of range
  unless you run in verbose mode

- reports promises are now allowed in any context (Redmine
  #2005)

- cf-report has been removed

- cf-execd: --once implies --no-fork

Bugfixes:

- do not wait for splaytime when executing only once

- disable xml editing functionality when libxml2 doesn't
  provide necessary APIs (Redmine #1937)

Approved by:	cy (maintainer, implicit)
2013-02-28 21:02:28 +00:00

88 lines
2.2 KiB
Makefile

# Created by: jrhett@netconsonance.com
# $FreeBSD$
PORTNAME= cfengine
PORTVERSION= 3.5.0a2
PORTEPOCH= 1
CATEGORIES= sysutils
PKGNAMESUFFIX= -devel
MASTER_SITES= http://cfengine.com/source-code/download?file=
MAINTAINER= cy@FreeBSD.org
# gjb@FreeBSD.org is also committer for this port
COMMENT= A systems administration tool for networks
LATEST_LINK= cfengine-devel
FETCH_BEFORE_ARGS= -o ${DISTDIR}/${DISTFILES}
CONFLICTS= cfengine-[23]*
USE_RC_SUBR= cf-execd cf-serverd
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 \
--libexecdir=${PREFIX}/libexec \
--libdir=${PREFIX}/libexec \
--mandir=${PREFIX}/man \
--with-workdir=/var/cfengine \
--with-pcre=${LOCALBASE} \
--enable-fhs
LIB_DEPENDS+= pcre.3:${PORTSDIR}/devel/pcre
OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT
OPTIONS_SINGLE= DB
OPTIONS_SINGLE_DB= TOKYOCABINET QDBM
TOKYOCABINET_DESC= Enable TokyoCabinet database backend
QDBM_DESC= Enable QDBM database backend
PGSQL_DESC= Enable PostgreSQL integration
MYSQL_DESC= Enable MySQL integration
LIBVIRT_DESC= Enable libvirt integration
OPTIONS_DEFAULT=TOKYOCABINET
.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.1000:${PORTSDIR}/devel/libvirt
.endif
MAN8= cf-agent.8 cf-key.8 cf-monitord.8 \
cf-serverd.8 cf-execd.8 \
cf-promises.8 cf-runagent.8
post-patch:
@${REINPLACE_CMD} -e '/^htmldir/s!=.*!= @htmldir@!'\
${WRKSRC}/docs/Makefile.in
.include <bsd.port.post.mk>