From owner-svn-ports-all@FreeBSD.ORG Thu Jul 18 21:52:20 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 71144E92; Thu, 18 Jul 2013 21:52:20 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 61FE0B48; Thu, 18 Jul 2013 21:52:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6ILqJN0084535; Thu, 18 Jul 2013 21:52:19 GMT (envelope-from glarkin@svn.freebsd.org) Received: (from glarkin@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6ILqJXg084533; Thu, 18 Jul 2013 21:52:19 GMT (envelope-from glarkin@svn.freebsd.org) Message-Id: <201307182152.r6ILqJXg084533@svn.freebsd.org> From: Greg Larkin Date: Thu, 18 Jul 2013 21:52:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323257 - in head: . security/logcheck 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.14 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: Thu, 18 Jul 2013 21:52:20 -0000 Author: glarkin Date: Thu Jul 18 21:52:19 2013 New Revision: 323257 URL: http://svnweb.freebsd.org/changeset/ports/323257 Log: - Only disable automatic cron job installation when installing from the port, not the package. Modified: head/UPDATING head/security/logcheck/Makefile Modified: head/UPDATING ============================================================================== --- head/UPDATING Thu Jul 18 20:55:32 2013 (r323256) +++ head/UPDATING Thu Jul 18 21:52:19 2013 (r323257) @@ -13,10 +13,10 @@ you update your ports collection, before installation of the crontab file. When installing the port interactively, the port option is enabled by default to mimic previous behavior. - When the port is installed non-interactively (BATCH=yes or - PACKAGE_BUILDING=yes), the crontab file *will not* be installed - automatically. If the EXAMPLES port option is enabled, the crontab file - can be installed manually at a later time from EXAMPLESDIR/crontab.in. + When the port is installed non-interactively (BATCH=yes) the crontab + file *will not* be installed automatically. If the EXAMPLES port option + is enabled, the crontab file can be installed manually at a later time + from EXAMPLESDIR/crontab.in. 20130718: AFFECTS: users of www/zend-framework Modified: head/security/logcheck/Makefile ============================================================================== --- head/security/logcheck/Makefile Thu Jul 18 20:55:32 2013 (r323256) +++ head/security/logcheck/Makefile Thu Jul 18 21:52:19 2013 (r323257) @@ -3,7 +3,7 @@ PORTNAME= logcheck PORTVERSION= 1.3.15 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -28,7 +28,7 @@ RUNDIR= ${BASEDIR}/var/run/${PORTNAME} OPTIONS_DEFINE= CRON CRON_DESC= Install cron script automatically -.if !defined(BATCH) && !defined(PACKAGE_BUILDING) +.if !defined(BATCH) OPTIONS_DEFAULT=CRON .endif