blob: 87ba14176b3b8fdba250923d32ac4c802474cdc3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Created by: pauls
# $FreeBSD$
PORTNAME= spybye
PORTVERSION= 0.3
PORTREVISION= 2
CATEGORIES= security www
MASTER_SITES= http://www.monkey.org/~provos/
MAINTAINER= pauls@utdallas.edu
COMMENT= A web proxy to detect malware
LIB_DEPENDS= libevent-1.4.so:${PORTSDIR}/devel/libevent
OPTIONS_DEFINE= CLAMAV
CLAMAV_DESC= Enable CLAMAV support
USE_RC_SUBR= spybye
GNU_CONFIGURE= yes
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MCLAMAV}
LIB_DEPENDS+= libclamav.so:${PORTSDIR}/security/clamav
CONFIGURE_ARGS+= --with-libclamav=${PREFIX}/bin
.endif
.include <bsd.port.post.mk>
|