freebsd-ports/sysutils/cfengine34/Makefile
Cy Schubert 5df07e7f56 Rather than flag cfengine ports that do not support openssl111
unconditionally BROKEN under FreeBSD 12 & 13, only flag BROKEN
when security/openssl is not installed on systems after
openssl111 was committed to 12-CURRENT.

PR:		232709
Reported by:	linimon
2018-10-31 05:10:50 +00:00

103 lines
2.7 KiB
Makefile

# Created by: jrhett@netconsonance.com
# $FreeBSD$
PORTNAME= cfengine
PORTVERSION= 3.4.5
PORTREVISION= 11
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
# skreuzer@FreeBSD.org is also committer for this port
COMMENT= Systems administration tool for networks
CPE_VENDOR= gnu
DEPRECATED= OpenSSL 1.1.X is not supported.
EXPIRATION_DATE= 2021-09-30
CONFLICTS= cfengine-2* cfengine3[0-35-9]-* cfengine31[0-9]-*
.if !defined(MASTERDIR)
PKGNAMESUFFIX= 34
CONFLICTS+= cfengine-3.*
.endif
FETCH_BEFORE_ARGS= -o ${DISTDIR}/${DISTFILES}
CONFLICTS= cfengine-2* cfengine-3.[1235-9]* cfengine-devel-*
USE_RC_SUBR= cf-execd cf-serverd
USES= cpe gmake libtool ssl
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CFLAGS+= -I${OPENSSLINC}
LDFLAGS+= -L${OPENSSLLIB}
# 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: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:databases/tokyocabinet
.endif
.if ${PORT_OPTIONS:MQDBM}
CONFIGURE_ARGS+= --with-qdbm=${LOCALBASE}
LIB_DEPENDS+= libqdbm.so:databases/qdbm
.endif
.if ${PORT_OPTIONS:MPGSQL}
USES+= pgsql
CONFIGURE_ARGS+= --with-postgresql=${LOCALBASE}
.endif
.if ${PORT_OPTIONS:MMYSQL}
USES+= mysql
BROKEN= configure: error: MySQL client library exports symbols (EVP_CIPHER_CTX_init) clashing with OpenSSL.
CONFIGURE_ARGS+= --with-mysql=${LOCALBASE}
LIB_DEPENDS+= libmysqlclient.so:${_MYSQL_CLIENT}
LDFLAGS+= -L${LOCALBASE}/lib/mysql
.endif
.if ${PORT_OPTIONS:MLIBVIRT}
CONFIGURE_ARGS+= --with-libvirt=${LOCALBASE}
LIB_DEPENDS+= libvirt.so:devel/libvirt
.endif
post-patch:
@${REINPLACE_CMD} -e '/^htmldir/s!=.*!= @htmldir@!'\
${WRKSRC}/docs/Makefile.in
.include <bsd.port.pre.mk>
.if ${OPSYS} == "FreeBSD" && ${OSVERSION} >= 1200085
.if ${SSL_DEFAULT} != "openssl"
BROKEN_FreeBSD_12= fails to build with openssl111, install security/openssl
BROKEN_FreeBSD_13= fails to build with openssl111, install security/openssl
.endif
.endif
.include <bsd.port.post.mk>