blob: 15d4a365c97c831f036fe26f6c1a7126292907a0 (
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: 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>
|