mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
8429fb5a76
PR: 198196, 198197, 198198, 198199, 198200, 198201 Submitted by: shun.fbsd.pr@dropcut.net
88 lines
2.2 KiB
Makefile
88 lines
2.2 KiB
Makefile
# Created by: jrhett@netconsonance.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cfengine
|
|
PORTVERSION= 3.4.5
|
|
PORTREVISION= 6
|
|
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
|
|
CPE_VENDOR= gnu
|
|
|
|
.if !defined(MASTERDIR)
|
|
PKGNAMESUFFIX= 34
|
|
LATEST_LINK= cfengine34
|
|
.endif
|
|
|
|
FETCH_BEFORE_ARGS= -o ${DISTDIR}/${DISTFILES}
|
|
|
|
CONFLICTS= cfengine-2* cfengine-3.[235]* cfengine-devel-*
|
|
|
|
USE_RC_SUBR= cf-execd cf-serverd
|
|
|
|
USES= cpe libtool gmake
|
|
USE_LDCONFIG= yes
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= 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+= libpcre.so:${PORTSDIR}/devel/pcre
|
|
|
|
OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT
|
|
OPTIONS_SINGLE= BACKEND
|
|
OPTIONS_SINGLE_BACKEND= TOKYOCABINET QDBM
|
|
OPTIONS_DEFAULT= TOKYOCABINET
|
|
|
|
TOKYOCABINET_DESC= Use TokyoCabinet as backend db
|
|
QDBM_DESC= Use QDBM as backend db
|
|
PGSQL_DESC= Enable PostgreSQL connector
|
|
MYSQL_DESC= Enable MySQL connector
|
|
LIBVIRT_DESC= Enable libvirt compatibility
|
|
|
|
.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}
|
|
USES+= pgsql
|
|
CONFIGURE_ARGS+= --with-postgresql=${LOCALBASE}
|
|
.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
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^htmldir/s!=.*!= @htmldir@!'\
|
|
${WRKSRC}/docs/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|