diff options
author | Renato Botelho <garga@FreeBSD.org> | 2007-06-25 12:34:07 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2007-06-25 12:34:07 +0000 |
commit | e4210f6e8d649b7dfb0253d48e54b8f592a6709d (patch) | |
tree | a444366941bcb36bce474d0b8854d567d0218afa | |
parent | 048e860ca22cb9683f71245a20f6ba7577cdab7d (diff) | |
download | ports-e4210f6e8d649b7dfb0253d48e54b8f592a6709d.tar.gz ports-e4210f6e8d649b7dfb0253d48e54b8f592a6709d.zip |
Scanhill is a Microsoft Messenger Protocol Sniffer. Currently it can only
intercept Instant Text Messaging. Optionally, intercepted text messages can be
stored onto an RDMBS (Only mySQL is supported for now). Given that mySQL is
used, stored instant messages can be read through a browser interface that is
written in PHP language. Please see the INSTALL.txt file for instructions on
how to install, configure and run EnderUNIX scanhill.
WWW: http://www.enderunix.org/scanhill/
Notes
Notes:
svn path=/head/; revision=194221
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/scanhill/Makefile | 45 | ||||
-rw-r--r-- | security/scanhill/distinfo | 3 | ||||
-rw-r--r-- | security/scanhill/pkg-descr | 8 | ||||
-rw-r--r-- | security/scanhill/pkg-plist | 5 |
5 files changed, 62 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index db4836ee176d..c0f2f65ddd20 100644 --- a/security/Makefile +++ b/security/Makefile @@ -651,6 +651,7 @@ SUBDIR += samhain-server SUBDIR += sancp SUBDIR += sasp + SUBDIR += scanhill SUBDIR += scanlogd SUBDIR += scanssh SUBDIR += seahorse diff --git a/security/scanhill/Makefile b/security/scanhill/Makefile new file mode 100644 index 000000000000..7fef4b4bb442 --- /dev/null +++ b/security/scanhill/Makefile @@ -0,0 +1,45 @@ +# New ports collection makefile for: scanhill +# Date created: 2007-06-18 +# Whom: garga +# +# $FreeBSD$ +# + +PORTNAME= scanhill +DISTVERSION= 0.5-p1 +CATEGORIES= security net-im +MASTER_SITES= http://www.enderunix.org/scanhill/ + +MAINTAINER= garga@FreeBSD.org +COMMENT= Microsoft Messenger Protocol Sniffer + +WRKSRC= ${WRKDIR}/${PORTNAME} + +GNU_CONFIGURE= yes +USE_ICONV= yes + +PORTDOCS= README.txt INSTALL.txt mysql.sql + +OPTIONS= MYSQL "Enable MySQL support" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_MYSQL) +CONFIGURE_ARGS+= --enable-mysql +USE_MYSQL= yes +.endif + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/scanhill ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/scanhill.conf ${PREFIX}/etc/scanhill.conf-dist +.if !exists(${PREFIX}/etc/scanhill.conf) + ${INSTALL_DATA} ${WRKSRC}/scanhill.conf ${PREFIX}/etc/ +.endif +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +. for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +. endfor +.endif + +.include <bsd.port.post.mk> diff --git a/security/scanhill/distinfo b/security/scanhill/distinfo new file mode 100644 index 000000000000..58ec2ccfa3f3 --- /dev/null +++ b/security/scanhill/distinfo @@ -0,0 +1,3 @@ +MD5 (scanhill-0.5-p1.tar.gz) = 44fe6932e275c078097ea3234fdead67 +SHA256 (scanhill-0.5-p1.tar.gz) = 45e74b809301ac017877fbbeeef107a6baa6c9e881f7fe8c40be996a85e2b195 +SIZE (scanhill-0.5-p1.tar.gz) = 28658 diff --git a/security/scanhill/pkg-descr b/security/scanhill/pkg-descr new file mode 100644 index 000000000000..d7002fd5257f --- /dev/null +++ b/security/scanhill/pkg-descr @@ -0,0 +1,8 @@ +Scanhill is a Microsoft Messenger Protocol Sniffer. Currently it can only +intercept Instant Text Messaging. Optionally, intercepted text messages can be +stored onto an RDMBS (Only mySQL is supported for now). Given that mySQL is +used, stored instant messages can be read through a browser interface that is +written in PHP language. Please see the INSTALL.txt file for instructions on +how to install, configure and run EnderUNIX scanhill. + +WWW: http://www.enderunix.org/scanhill/ diff --git a/security/scanhill/pkg-plist b/security/scanhill/pkg-plist new file mode 100644 index 000000000000..9c48be1b2ed4 --- /dev/null +++ b/security/scanhill/pkg-plist @@ -0,0 +1,5 @@ +@comment $FreeBSD$ +bin/scanhill +@unexec if cmp -s %D/etc/scanhill.conf-dist %D/etc/scanhill.conf; then rm -f %D/etc/scanhill.conf; fi +etc/scanhill.conf-dist +@exec [ -f %B/scanhill.conf ] || cp -f %B/%f %B/scanhill.conf |