blob: a06c27da989a289eff85a052e7c0823de2874baf (
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
29
30
31
32
33
34
35
|
# New ports collection makefile for: spybye
# Date created: 23 May 2008
# Whom: pauls
#
# $FreeBSD$
#
PORTNAME= spybye
PORTVERSION= 0.3
PORTREVISION= 1
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= CLAMAV "Enable CLAMAV support" off
USE_RC_SUBR= spybye.sh
GNU_CONFIGURE= yes
CONFIGURE_ENV= LDFLAGS="${LDFLAGS}"
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
MAN1= spybye.1
.include <bsd.port.pre.mk>
.if defined(WITH_CLAMAV)
LIB_DEPENDS+= clamav:${PORTSDIR}/security/clamav
CONFIGURE_ARGS+= --with-libclamav=${PREFIX}/bin
.endif
.include <bsd.port.post.mk>
|