mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
29 lines
566 B
Makefile
29 lines
566 B
Makefile
# 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= event-1.4:${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+= clamav.7:${PORTSDIR}/security/clamav
|
|
CONFIGURE_ARGS+= --with-libclamav=${PREFIX}/bin
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|