Index: head/security/revealrk/Makefile =================================================================== --- head/security/revealrk/Makefile (revision 415621) +++ head/security/revealrk/Makefile (revision 415622) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= revealrk -PORTVERSION= 1.0.1 +PORTVERSION= 1.1.2 CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/ MAINTAINER= pi@FreeBSD.org COMMENT= Search hidden procs/rootkits from cron with low false positive rate LICENSE= GPLv3 PLIST_FILES= bin/revealrk man/man1/revealrk.1.gz USES= scons tar:tgz .if !empty(PREFIX) MAKE_ARGS+= --prefix=${STAGEDIR}${PREFIX} .else MAKE_ARGS+= --prefix=${STAGEDIR}${LOCALBASE} .endif .include Index: head/security/revealrk/distinfo =================================================================== --- head/security/revealrk/distinfo (revision 415621) +++ head/security/revealrk/distinfo (revision 415622) @@ -1,2 +1,3 @@ -SHA256 (revealrk-1.0.1.tgz) = 7da7bd1709d06e5771c5c6d9c147ae1613f24c04633693e14afeee004d7cb844 -SIZE (revealrk-1.0.1.tgz) = 34039 +TIMESTAMP = 1463827292 +SHA256 (revealrk-1.1.2.tgz) = 5006a93ecc54698703d6bfcc49b572c335c45c5cc4190ff75281a9b4a3c593a7 +SIZE (revealrk-1.1.2.tgz) = 36009 Index: head/security/revealrk/files/patch-SConstruct =================================================================== --- head/security/revealrk/files/patch-SConstruct (revision 415621) +++ head/security/revealrk/files/patch-SConstruct (revision 415622) @@ -1,31 +1,22 @@ ---- SConstruct.orig 2013-01-03 09:06:35.000000000 +0100 -+++ SConstruct 2013-11-14 20:18:29.000000000 +0100 -@@ -13,7 +13,7 @@ +--- SConstruct.orig 2016-05-19 16:27:37 UTC ++++ SConstruct +@@ -13,7 +13,7 @@ prog_files = Split('revealrk.c') 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 -@@ -97,7 +97,7 @@ - - ########## Environment ########## - --env = Environment(CC = 'gcc', CCFLAGS = '-std=c99 -Wall -pedantic') -+env = Environment(CC = 'cc', CCFLAGS = '-std=c99 -Wall -pedantic') - if not env.GetOption('clean'): - if not verbose: - env['CCCOMSTR'] = 'Compiling $TARGET' -@@ -147,8 +147,8 @@ +@@ -152,8 +152,8 @@ if not env.GetOption('clean'): 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')) Index: head/security/revealrk/files/patch-revealrk.c =================================================================== --- head/security/revealrk/files/patch-revealrk.c (nonexistent) +++ head/security/revealrk/files/patch-revealrk.c (revision 415622) @@ -0,0 +1,12 @@ +--- revealrk.c.orig 2016-05-19 16:24:49 UTC ++++ revealrk.c +@@ -526,7 +526,9 @@ void GetBootTime(void) + fclose(fsStat); + } + } ++#endif + ++#if defined(OS_LINUX) || defined(OS_BSD) + char* GetCommand(pid_t tuPID) + { + static char acBuf[PATH_MAX]; Property changes on: head/security/revealrk/files/patch-revealrk.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/revealrk/pkg-descr =================================================================== --- head/security/revealrk/pkg-descr (revision 415621) +++ head/security/revealrk/pkg-descr (revision 415622) @@ -1,10 +1,9 @@ - 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