1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00
freebsd-ports/security/scanhill/Makefile
Renato Botelho e4210f6e8d 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/
2007-06-25 12:34:07 +00:00

46 lines
963 B
Makefile

# 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>