aboutsummaryrefslogtreecommitdiff
path: root/security/revealrk/files
diff options
context:
space:
mode:
authorGreg Larkin <glarkin@FreeBSD.org>2013-01-29 21:06:36 +0000
committerGreg Larkin <glarkin@FreeBSD.org>2013-01-29 21:06:36 +0000
commit6c6fff35bbde85fe36047682d6b11e5b16127662 (patch)
treefd5d4d76bd9c88e24f7f50a7eb513f402fdf544d /security/revealrk/files
parentb7817fc389720fbb03cb4fbb9044b7479a3461c0 (diff)
downloadports-6c6fff35bbde85fe36047682d6b11e5b16127662.tar.gz
ports-6c6fff35bbde85fe36047682d6b11e5b16127662.zip
revealrk searches for hidden processes. If you have a kernel mod
rootkit loaded into memory without hiding any process, don't expect to find anything. Reveal RootKit is intended to run out of cron or similar services on a regular basis and avoids verbose output as long as nothing was found. WWW: http://sourceforge.net/projects/revealrk PR: ports/174981
Notes
Notes: svn path=/head/; revision=311188
Diffstat (limited to 'security/revealrk/files')
-rw-r--r--security/revealrk/files/patch-SConstruct22
1 files changed, 22 insertions, 0 deletions
diff --git a/security/revealrk/files/patch-SConstruct b/security/revealrk/files/patch-SConstruct
new file mode 100644
index 000000000000..a307f9f841e7
--- /dev/null
+++ b/security/revealrk/files/patch-SConstruct
@@ -0,0 +1,22 @@
+--- SConstruct.orig 2013-01-04 23:07:07.000000000 +0100
++++ SConstruct 2013-01-04 23:08:37.000000000 +0100
+@@ -13,7 +13,7 @@
+ pkg_files = prog_files + Split('revealrk.1 SConstruct changelog license.txt README INSTALL cron.example Makefile config.h')
+
+ debug = not ARGUMENTS.get('debug', '0').lower() in ['0', 'false', 'no']
+-prefix = GetOption('prefix') or '/'
++prefix = GetOption('prefix') or '/usr'
+ clean_all = not GetOption('clean_all') is None
+ static = not GetOption('static') is None
+ build_tgz = not GetOption('tgz') is None
+@@ -147,8 +147,8 @@
+ conf.env.Append(LINKFLAGS = ' -static')
+ env = conf.Finish()
+
+-env.Alias('install', env.AddPostAction(env.Install(prefix + '/usr/bin', target), env.Action('strip ' + prefix + '/usr/bin/' + target)))
+-env.Alias('install', env.AddPostAction(env.Install(prefix + '/usr/share/man/man1', target + '.1'), env.Action('gzip -f ' + prefix + '/usr/share/man/man1/' + target + '.1')))
++env.Alias('install', env.AddPostAction(env.Install(prefix + '/bin', target), env.Action('strip ' + prefix + '/bin/' + target)))
++env.Alias('install', env.AddPostAction(env.Install(prefix + '/man/man1', target + '.1'), env.Action('gzip -f ' + prefix + '/man/man1/' + target + '.1')))
+
+ if clean_all:
+ env.Clean('distclean', Split('config.log .sconf_temp .sconsign.dblite'))