blob: a1d38f9897358a674358f960a5284fa07b7b01ef (
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
|
# Ports collection makefile for: glflow
# Date created: 2004-07-12
# Whom: David Thiel (lx@redundancy.redundancy.org)
#
# $FreeBSD$
#
PORTNAME= glflow
PORTVERSION= 0.1.1
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= net security
MASTER_SITES= http://night.rdslink.ro/dudu/glflow/
DISTNAME= glFlow-${PORTVERSION}
MAINTAINER= lx@redundancy.redundancy.org
COMMENT= A NetFlow tool for detecting DoS attacks
PLIST_FILES= bin/glflow
PORTDOCS= README
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-debug --with-hash=md4
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/glflow ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>
|