aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authoraraujo <araujo@FreeBSD.org>2008-05-18 08:14:19 +0800
committeraraujo <araujo@FreeBSD.org>2008-05-18 08:14:19 +0800
commit094d1963e92ee6edbb6b546e2cee48d0cab216a8 (patch)
treefd31cffbf0c70ad061d7316abbab3c0a6003e435 /security
parentdaa859276436e3e61932ca8fc89ce10ba8245761 (diff)
downloadfreebsd-ports-gnome-094d1963e92ee6edbb6b546e2cee48d0cab216a8.tar.gz
freebsd-ports-gnome-094d1963e92ee6edbb6b546e2cee48d0cab216a8.tar.zst
freebsd-ports-gnome-094d1963e92ee6edbb6b546e2cee48d0cab216a8.zip
- Removed a wrong patch forgotten in last commit.
- Bump PORTREVISION. Reported by: pointyhat via erwin
Diffstat (limited to 'security')
-rw-r--r--security/sguil-sensor/Makefile1
-rw-r--r--security/sguil-sensor/files/patch-sensor_agent.tcl23
2 files changed, 1 insertions, 23 deletions
diff --git a/security/sguil-sensor/Makefile b/security/sguil-sensor/Makefile
index a398688dfc52..d564fb529bfe 100644
--- a/security/sguil-sensor/Makefile
+++ b/security/sguil-sensor/Makefile
@@ -7,6 +7,7 @@
PORTNAME= sguil-sensor
PORTVERSION= 0.7.0
+PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= SF
MASTER_SITE_SUBDIR= sguil
diff --git a/security/sguil-sensor/files/patch-sensor_agent.tcl b/security/sguil-sensor/files/patch-sensor_agent.tcl
deleted file mode 100644
index a8ba9481c66d..000000000000
--- a/security/sguil-sensor/files/patch-sensor_agent.tcl
+++ /dev/null
@@ -1,23 +0,0 @@
---- sensor/sensor_agent.tcl.orig Mon Mar 20 20:38:18 2006
-+++ sensor/sensor_agent.tcl Mon Mar 20 20:40:06 2006
-@@ -1005,16 +1005,16 @@
- }
- }
- # Parse the config file here
--# Default location is /etc/sensor_agent.conf or pwd
-+# Default location is /usr/local/etc/sensor_agent.conf or pwd
- if { ![info exists CONF_FILE] } {
- # No conf file specified check the defaults
-- if { [file exists /etc/sensor_agent.conf] } {
-- set CONF_FILE /etc/sensor_agent.conf
-+ if { [file exists /usr/local/etc/sensor_agent.conf] } {
-+ set CONF_FILE /usr/local/etc/sensor_agent.conf
- } elseif { [file exists ./sensor_agent.conf] } {
- set CONF_FILE ./sensor_agent.conf
- } else {
- puts "Couldn't determine where the sensor_agent.tcl config file is"
-- puts "Looked for /etc/sensor_agent.conf and ./sensor_agent.conf."
-+ puts "Looked for /usr/local/etc/sensor_agent.conf and ./sensor_agent.conf."
- DisplayUsage $argv0
- }
- }