diff --git a/sysutils/cfengine-devel/Makefile b/sysutils/cfengine-devel/Makefile index 6821aabf656b..5009cc940fe1 100644 --- a/sysutils/cfengine-devel/Makefile +++ b/sysutils/cfengine-devel/Makefile @@ -1,75 +1,76 @@ # Created by: jrhett@netconsonance.com PORTNAME= cfengine PORTVERSION= 3.${CFENGINE_COMMIT_DATE} +PORTREVISION= 1 CATEGORIES= sysutils PKGNAMESUFFIX= -devel CFENGINE_HASH= ab2255f34 LIBNTECH_HASH= 10bd628 CFENGINE_COMMIT_DATE= 2021.07.05 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 USE_GITHUB= yes # GH_PROJECT= core libntech:libntech # GH_TAGNAME= ${CFENGINE_HASH} ${LIBNTECH_HASH} GH_TUPLE= cfengine:core:${CFENGINE_HASH} \ cfengine:libntech:${LIBNTECH_HASH}:libntech/libntech CPE_VENDOR= gnu CONFLICTS= cfengine-2* cfengine3[0-9]-* cfengine31[02-9]-* cfengine-3.* CONFLICTS= cfengine-[12-9]* USE_RC_SUBR= cf-execd cf-serverd cf-monitord MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes USES= autoreconf:build 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}-${HASH} EXPLICIT_VERSION=${PORTVERSION}-${HASH} CONFIGURE_SCRIPT= ./autogen.sh CONFIGURE_ENV= EXPLICIT_VERSION=${PORTVERSION}-${HASH} 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= postgresql=${LOCALBASE} MYSQL_USES= mysql MYSQL_BROKEN= configure: error: MySQL client library exports symbols (EVP_CIPHER_CTX_init) clashing with OpenSSL. MYSQL_CONFIGURE_WITH= mysql=${LOCALBASE} MYSQL_LIB_DEPENDS= libmysqlclient.so:${_MYSQL_CLIENT} MYSQL_LDFLAGS= -L${LOCALBASE}/lib/mysql LIBVIRT_CONFIGURE_WITH= libvirt=${LOCALBASE} LIBVIRT_LIB_DEPENDS+= libvirt.so:devel/libvirt .include diff --git a/sysutils/cfengine-devel/files/cf-execd.in b/sysutils/cfengine-devel/files/cf-execd.in index ace1288a92ef..b40d3507649a 100644 --- a/sysutils/cfengine-devel/files/cf-execd.in +++ b/sysutils/cfengine-devel/files/cf-execd.in @@ -1,26 +1,26 @@ #!/bin/sh # PROVIDE: cf-execd # REQUIRE: LOGIN # KEYWORD: shutdown # # Add the following line to /etc/rc.conf[.local] to enable cf-execd(8) # # cf_execd_enable (bool): Set to "NO" by default. # Set it to "YES" to enable cf-execd. # cf_execd_flags (str): Custom additional arguments to be passed # to cf-execd (default empty). # . /etc/rc.subr name="cf_execd" rcvar=cf_execd_enable -command="%%PREFIX%%/sbin/cf-execd" +command="%%PREFIX%%/bin/cf-execd" load_rc_config $name : ${cf_execd_enable="NO"} run_rc_command "$1" diff --git a/sysutils/cfengine-devel/files/cf-monitord.in b/sysutils/cfengine-devel/files/cf-monitord.in index efa6aaa6e495..dd21a0aaed6d 100644 --- a/sysutils/cfengine-devel/files/cf-monitord.in +++ b/sysutils/cfengine-devel/files/cf-monitord.in @@ -1,26 +1,26 @@ #!/bin/sh # PROVIDE: cf-monitord # REQUIRE: LOGIN # KEYWORD: shutdown # # Add the following line to /etc/rc.conf[.local] to enable cf-monitord(8) # # cf_monitord_enable (bool): Set to "NO" by default. # Set it to "YES" to enable cf-monitord. # cf_monitord_flags (str): Custom additional arguments to be passed # to cf-monitord (default empty). # . /etc/rc.subr name="cf_monitord" rcvar=cf_monitord_enable -command="%%PREFIX%%/sbin/cf-monitord" +command="%%PREFIX%%/bin/cf-monitord" load_rc_config $name : ${cf_monitord_enable="NO"} run_rc_command "$1" diff --git a/sysutils/cfengine-devel/files/cf-serverd.in b/sysutils/cfengine-devel/files/cf-serverd.in index a53b091ffbf9..938274887353 100644 --- a/sysutils/cfengine-devel/files/cf-serverd.in +++ b/sysutils/cfengine-devel/files/cf-serverd.in @@ -1,26 +1,26 @@ #!/bin/sh # PROVIDE: cf-serverd # REQUIRE: LOGIN # KEYWORD: shutdown # # Add the following line to /etc/rc.conf[.local] to enable cf-serverd(8) # # cf_serverd_enable (bool): Set to "NO" by default. # Set it to "YES" to enable cf-serverd. # cf_serverd_flags (str): Custom additional arguments to be passed # to cf-serverd (default empty). # . /etc/rc.subr name="cf_serverd" rcvar=cf_serverd_enable -command="%%PREFIX%%/sbin/cf-serverd" +command="%%PREFIX%%/bin/cf-serverd" load_rc_config $name : ${cf_serverd_enable="NO"} run_rc_command "$1"