From owner-svn-ports-all@FreeBSD.ORG Wed Mar 26 13:09:03 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4007C93; Wed, 26 Mar 2014 13:09:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 74503A7B; Wed, 26 Mar 2014 13:09:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2QD9369090144; Wed, 26 Mar 2014 13:09:03 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2QD93eG090141; Wed, 26 Mar 2014 13:09:03 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201403261309.s2QD93eG090141@svn.freebsd.org> From: Steven Kreuzer Date: Wed, 26 Mar 2014 13:09:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349249 - in head/sysutils/cfengine35: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 13:09:03 -0000 Author: skreuzer Date: Wed Mar 26 13:09:02 2014 New Revision: 349249 URL: http://svnweb.freebsd.org/changeset/ports/349249 QAT: https://qat.redports.org/buildarchive/r349249/ Log: Correctly expand $(sys.crontab) on FreeBSD Define LICENSE Update LIB_DEPENDS to new format PR: ports/187936 Approved by: cy@FreeBSD.org (maintainer) Added: head/sysutils/cfengine35/files/patch-libpromises-sysinfo.c (contents, props changed) Modified: head/sysutils/cfengine35/Makefile Modified: head/sysutils/cfengine35/Makefile ============================================================================== --- head/sysutils/cfengine35/Makefile Wed Mar 26 13:07:07 2014 (r349248) +++ head/sysutils/cfengine35/Makefile Wed Mar 26 13:09:02 2014 (r349249) @@ -3,7 +3,7 @@ PORTNAME= cfengine PORTVERSION= 3.5.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://cfengine.com/source-code/download?file= @@ -11,6 +11,8 @@ MAINTAINER= cy@FreeBSD.org # gjb@FreeBSD.org is also committer for this port COMMENT= A systems administration tool for networks +LICENSE= GPLv3 + .if !defined(MASTERDIR) PKGNAMESUFFIX= 35 LATEST_LINK= cfengine35 @@ -51,12 +53,12 @@ OPTIONS_DEFAULT=TOKYOCABINET .if ${PORT_OPTIONS:MTOKYOCABINET} CONFIGURE_ARGS+= --with-tokyocabinet=${LOCALBASE} -LIB_DEPENDS+= libtokyocabinet.so.9:${PORTSDIR}/databases/tokyocabinet +LIB_DEPENDS+= libtokyocabinet.so:${PORTSDIR}/databases/tokyocabinet .endif .if ${PORT_OPTIONS:MQDBM} CONFIGURE_ARGS+= --with-qdbm=${LOCALBASE} -LIB_DEPENDS+= libqdbm.so.14:${PORTSDIR}/databases/qdbm +LIB_DEPENDS+= libqdbm.so:${PORTSDIR}/databases/qdbm .endif .if ${PORT_OPTIONS:MPGSQL} Added: head/sysutils/cfengine35/files/patch-libpromises-sysinfo.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/cfengine35/files/patch-libpromises-sysinfo.c Wed Mar 26 13:09:02 2014 (r349249) @@ -0,0 +1,13 @@ +--- libpromises/sysinfo.c.orig 2013-12-09 12:13:14.000000000 +0000 ++++ libpromises/sysinfo.c 2014-03-25 14:30:28.000000000 +0000 +@@ -1075,6 +1075,10 @@ + { + snprintf(vbuff, CF_BUFSIZE, "/var/spool/cron/%s", pw->pw_name); + } ++ else if (IsDefinedClass(ctx, "freebsd", NULL)) ++ { ++ snprintf(vbuff, CF_BUFSIZE, "/var/cron/tabs/%s", pw->pw_name); ++ } + else + { + snprintf(vbuff, CF_BUFSIZE, "/var/spool/cron/crontabs/%s", pw->pw_name);