70 lines
1.7 KiB
Makefile
70 lines
1.7 KiB
Makefile
# Created by: jrhett@netconsonance.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cfengine
|
|
PORTVERSION= 3.6.0b1
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://cfengine.com/source-code/download?file= \
|
|
https://s3.amazonaws.com/cfengine.package-repos/tarballs/
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
# gjb@FreeBSD.org is also committer for this port
|
|
COMMENT= A systems administration tool for networks
|
|
|
|
LICENSE= GPLv3
|
|
|
|
.if !defined(MASTERDIR)
|
|
PKGNAMESUFFIX= 36
|
|
LATEST_LINK= cfengine36
|
|
.endif
|
|
|
|
FETCH_BEFORE_ARGS= -o ${DISTDIR}/${DISTFILES}
|
|
|
|
CONFLICTS= cfengine-[234]*
|
|
|
|
USE_RC_SUBR= cf-execd cf-serverd cf-monitord
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake
|
|
CFLAGS+= -Wno-return-type
|
|
# 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} \
|
|
--with-lmdb=${LOCALBASE} \
|
|
--enable-fhs
|
|
|
|
LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre \
|
|
liblmdb.so:${PORTSDIR}/databases/lmdb
|
|
|
|
OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.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.post.mk>
|