Index: head/sysutils/cfengine36/Makefile =================================================================== --- head/sysutils/cfengine36/Makefile (revision 363348) +++ head/sysutils/cfengine36/Makefile (revision 363349) @@ -1,69 +1,74 @@ # Created by: jrhett@netconsonance.com # $FreeBSD$ PORTNAME= cfengine -PORTVERSION= 3.6.0 +PORTVERSION= 3.6.1 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 +MAKE_JOBS_UNSAFE= yes 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 .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 + +post-install: + @cd ${STAGEDIR}${PREFIX}/libexec/cfengine && \ + ${LN} -s libpromises.so.3.0.6 libpromises.so.3 .include Index: head/sysutils/cfengine36/distinfo =================================================================== --- head/sysutils/cfengine36/distinfo (revision 363348) +++ head/sysutils/cfengine36/distinfo (revision 363349) @@ -1,2 +1,2 @@ -SHA256 (cfengine-3.6.0.tar.gz) = bf1a73ebd9b7ca2cb703cc78bb289a097493e787e1658c23e0a5733c49a72e24 -SIZE (cfengine-3.6.0.tar.gz) = 1918473 +SHA256 (cfengine-3.6.1.tar.gz) = e8d5dd1573db077749e280055f337f02f039e9c41779595dea6942c35cdb8782 +SIZE (cfengine-3.6.1.tar.gz) = 1905437 Index: head/sysutils/cfengine36/files/patch-m4-strndup.m4 =================================================================== --- head/sysutils/cfengine36/files/patch-m4-strndup.m4 (nonexistent) +++ head/sysutils/cfengine36/files/patch-m4-strndup.m4 (revision 363349) @@ -0,0 +1,54 @@ +--- /dev/null 2014-07-29 08:00:54.000000000 -0700 ++++ m4/strndup.m4 2014-07-29 08:01:42.499328796 -0700 +@@ -0,0 +1,51 @@ ++# strndup.m4 serial 21 ++dnl Copyright (C) 2002-2003, 2005-2013 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([cf3_FUNC_STRNDUP], ++[ ++ AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles ++ AC_CHECK_DECLS([strndup]) ++ AC_REPLACE_FUNCS([strndup]) ++ if test $ac_cv_have_decl_strndup = no; then ++ HAVE_DECL_STRNDUP=0 ++ fi ++ ++ if test $ac_cv_func_strndup = yes; then ++ HAVE_STRNDUP=1 ++ # AIX 5.3 has a function that tries to copy the entire range specified ++ # by n, instead of just the length of src. ++ AC_CACHE_CHECK([for working strndup], [cf3_cv_func_strndup_works], ++ [AC_RUN_IFELSE([ ++ AC_LANG_PROGRAM([[#include ++ #include ]], [[ ++#if !HAVE_DECL_STRNDUP ++ extern ++ #ifdef __cplusplus ++ "C" ++ #endif ++ char *strndup (const char *, size_t); ++#endif ++ char *s; ++ // Will crash if strndup tries to traverse all 2GB. ++ s = strndup ("string", 2000000000); ++ return 0;]])], ++ [cf3_cv_func_strndup_works=yes], ++ [cf3_cv_func_strndup_works=no], ++ [ ++changequote(,)dnl ++ case $host_os in ++ aix | aix[3-6]*) cf3_cv_func_strndup_works="guessing no";; ++ *) cf3_cv_func_strndup_works="guessing yes";; ++ esac ++changequote([,])dnl ++ ])]) ++ case $cf3_cv_func_strndup_works in ++ *no) AC_LIBOBJ([strndup]) ;; ++ esac ++ else ++ HAVE_STRNDUP=0 ++ fi ++]) Property changes on: head/sysutils/cfengine36/files/patch-m4-strndup.m4 ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property