mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
fa3a17c064
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories P-S. CR: D422 Approved by: portmgr (bapt)
70 lines
1.6 KiB
Makefile
70 lines
1.6 KiB
Makefile
# Created by: jrhett@netconsonance.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cfengine
|
|
PORTVERSION= 3.6.0
|
|
PORTEPOCH= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://s3.amazonaws.com/cfengine.package-repos/tarballs/
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
# gjb@FreeBSD.org is also committer for this port
|
|
COMMENT= 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 libtool
|
|
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>
|