aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorglarkin <glarkin@FreeBSD.org>2013-07-19 05:52:19 +0800
committerglarkin <glarkin@FreeBSD.org>2013-07-19 05:52:19 +0800
commite250b5b167f060140b1fc2d6264ebf70f4e9ed9c (patch)
treec1340c655d95ed83200fae7c199332fd6af9d227
parent51726e9a82d720a86471c40a544845f24d8878f6 (diff)
downloadfreebsd-ports-gnome-e250b5b167f060140b1fc2d6264ebf70f4e9ed9c.tar.gz
freebsd-ports-gnome-e250b5b167f060140b1fc2d6264ebf70f4e9ed9c.tar.zst
freebsd-ports-gnome-e250b5b167f060140b1fc2d6264ebf70f4e9ed9c.zip
- Only disable automatic cron job installation when installing from the
port, not the package.
-rw-r--r--UPDATING8
-rw-r--r--security/logcheck/Makefile4
2 files changed, 6 insertions, 6 deletions
diff --git a/UPDATING b/UPDATING
index c6e7a27563d7..850fd63e696e 100644
--- a/UPDATING
+++ b/UPDATING
@@ -13,10 +13,10 @@ you update your ports collection, before attempting any port upgrades.
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
diff --git a/security/logcheck/Makefile b/security/logcheck/Makefile
index f22a36ad0e0f..8ffb6506faea 100644
--- a/security/logcheck/Makefile
+++ b/security/logcheck/Makefile
@@ -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