diff options
Diffstat (limited to 'net/aguri/Makefile')
-rw-r--r-- | net/aguri/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/net/aguri/Makefile b/net/aguri/Makefile new file mode 100644 index 0000000..15d4a36 --- /dev/null +++ b/net/aguri/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: aguri +# Date created: 27 February 2003 +# Whom: Yann Berthier <yb@sainte-barbe.org> +# +# $FreeBSD$ +# + +PORTNAME= aguri +PORTVERSION= 0.5 +CATEGORIES= net ipv6 +MASTER_SITES= ftp://ftp.csl.sony.co.jp/pub/kjc/ + +MAINTAINER= yb@sainte-barbe.org +COMMENT= "An Aggregation-based Traffic Profiler" + +USE_XLIB= yes + +MAN1= aguri.1 + +post-install: + +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for FILES in INSTALL README + @${INSTALL_DATA} ${WRKSRC}/${FILES} ${DOCSDIR} +.endfor +.endif + @${MKDIR} ${DATADIR} + @${INSTALL_DATA} ${WRKSRC}/scripts/README ${DATADIR} +.for SCRIPTS in agurify.pl density.pl makeplot.pl + @${INSTALL_SCRIPT} ${WRKSRC}/scripts/${SCRIPTS} \ + ${DATADIR} +.endfor + +.include <bsd.port.mk> |