ac7eb24eb5
-- Aguri is an aggregation-based traffic profiler targeted for near real-time, long-term, and wide-area traffic monitoring. Aguri adapts itself to spatial traffic distribution by aggregating small volume flows into aggregates, and achieves temporal aggregation by creating a summary of summaries applying the same algorithm to its outputs. From: Jose Nazario <jose@crimelabs.net>
33 lines
738 B
Makefile
33 lines
738 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/05/04 18:57:29 margarida Exp $
|
|
|
|
COMMENT= "aggregation-based Network Traffic Profiler"
|
|
|
|
DISTNAME= aguri-0.5
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://www.csl.sony.co.jp/person/kjc/software.html
|
|
|
|
MAINTAINER= Jose Nazario <jose@crimelabs.net>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://ftp.csl.sony.co.jp/pub/kjc/
|
|
|
|
USE_X11= Yes
|
|
MAKE_FLAGS= CC="${CC}" CFLAGS="${CFLAGS}"
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT_DIR} ${PREFIX}/share/aguri/
|
|
.for script in README agurify.pl density.pl makeplot.pl
|
|
${INSTALL_SCRIPT} ${WRKDIST}/scripts/${script} \
|
|
${PREFIX}/share/aguri
|
|
.endfor
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
.include <bsd.port.mk>
|