freebsd-ports/sysutils/cfengine316/Makefile
Stefan Eßer bcaf25a8c8 Fix CONFLICTS entries of multiple ports
There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.

This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.

Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port
cannot conflict with itself (due to logic in bsd.port.mk that
supresses the pattern match result in that case).

A few ports that set the conflicts variables depending on complex
conditions (e.g. port options), have been left unmodified, despite
probably containing outdated package names.

These changes should only affect the installation of locally built
ports, not the package building with poudriere. They should give an
early indication of the install conflict in cases where currently
the pkg command aborts an installation when it detects that an
existing file would be overwritten,

Approved by:	portmgr (implicit)
2022-01-10 16:15:39 +01:00

72 lines
2 KiB
Makefile

# Created by: jrhett@netconsonance.com
PORTNAME= cfengine
PORTVERSION= 3.16.0
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
LICENSE= GPLv3
CPE_VENDOR= gnu
DEPRECATED= Expire one year after cfengine 3.18.0 released
EXPIRATION_DATE= 2022-07-05
CONFLICTS= cfengine cfengine3[0-9] cfengine3[0-9][0-9]
.if !defined(MASTERDIR)
PKGNAMESUFFIX= 316
.endif
FETCH_BEFORE_ARGS= -o ${DISTDIR}/${DISTFILES}
USE_RC_SUBR= cf-execd cf-serverd cf-monitord
MAKE_JOBS_UNSAFE= yes
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
USES= autoreconf cpe gmake gnome libtool localbase shebangfix ssl
USE_GNOME= libxml2
SHEBANG_FILES= examples/remake_outputs.pl
CFLAGS+= -Wno-return-type -fcommon
# EXAMPLESDIR= ${PREFIX}/share/examples/cfengine3
DOCSDIR= ${PREFIX}/share/doc/cfengine
MAKE_ENV= EXPLICIT_VERSION=${PORTVERSION}
CONFIGURE_ENV= EXPLICIT_VERSION=${PORTVERSION}
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
INSTALL_TARGET= install-strip
LIB_DEPENDS+= libpcre.so:devel/pcre \
liblmdb.so:databases/lmdb \
libyaml.so:textproc/libyaml \
libcurl.so:ftp/curl
OPTIONS_DEFINE= PGSQL MYSQL LIBVIRT
PGSQL_USES= pgsql
PGSQL_CONFIGURE_WITH= --with-postgresql=${LOCALBASE}
PGSQL_CONFIGURE_OFF= --without-postgresql
MYSQL_USES= mysql
MYSQL_BROKEN= configure: error: MySQL client library exports symbols (EVP_CIPHER_CTX_init) clashing with OpenSSL.
MYSQL_CONFIGURE_WITH= --with-mysql=${LOCALBASE}
MYSQL_CONFIGURE_OFF= --without-mysql
MYSQL_LIB_DEPENDS= libmysqlclient.so:${_MYSQL_CLIENT}
MYSQL_LDFLAGS= -L${LOCALBASE}/lib/mysql
LIBVIRT_CONFIGURE_WITH= --with-libvirt=${LOCALBASE}
LIBVIRT_LIB_DEPENDS+= libvirt.so:devel/libvirt
.include <bsd.port.mk>