Date: Wed, 5 Sep 2012 12:24:43 +0900 (JST) From: Masaki TAGAWA <masaki@club.kyutech.ac.jp> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/171334: New port: net/packter-agent: An agent tool for Internet traffic visualization Message-ID: <201209050324.q853OhAO090497@rosetta.club.kyutech.ac.jp> Resent-Message-ID: <201209050330.q853U9vr014971@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 171334 >Category: ports >Synopsis: New port: net/packter-agent: An agent tool for Internet traffic visualization >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 05 03:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Masaki TAGAWA >Release: FreeBSD 9.0-STABLE amd64 >Organization: WIDE Project Kyushu Institute of Technology >Environment: System: FreeBSD rosetta.club.kyutech.ac.jp 9.0-STABLE FreeBSD 9.0-STABLE #8: Mon Jul 2 11:36:08 JST 2012 root@rosetta.club.kyutech.ac.jp:/usr/obj/usr/src/sys/CLUBVMKERNEL amd64 >Description: PACKTER is a free and opensource software for visualization of Internet traffic. PACKTER systems are composed of Packter Viewer and Packter Agent. Packter Viewer draws a flying object by receiving Packter Protocol from Packter Agent. WWW: http://www.packter.net >How-To-Repeat: *Checked on Redports.org [1] [1] https://redports.org/buildarchive/20120905022723-18684/ >Fix: --- packter-agent.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # packter-agent # packter-agent/pkg-plist # packter-agent/distinfo # packter-agent/Makefile # packter-agent/pkg-descr # echo c - packter-agent mkdir -p packter-agent > /dev/null 2>&1 echo x - packter-agent/pkg-plist sed 's/^X//' >packter-agent/pkg-plist << '02adb2d230bde72f1f75aeb187caece3' Xbin/pt_agent Xbin/pt_sflow Xbin/pt_netflow Xbin/pt_thmon X@unexec if cmp -s %D/etc/packter.conf.sample %D/etc/packter.conf; then rm -f %D/etc/packter.conf; fi Xetc/packter.conf.sample X@exec [ -f %D/etc/packter.conf ] || cp -p %D/etc/packter.conf.sample %D/etc/packter.conf X%%PACKTERTC%%%%DATADIR%%/packter_tc/IPTB.pm X%%PACKTERTC%%%%DATADIR%%/packter_tc/InterTrackMessage.xsd X%%PACKTERTC%%%%DATADIR%%/packter_tc/btm.conf X%%PACKTERTC%%%%DATADIR%%/packter_tc/dp.conf X%%PACKTERTC%%%%DATADIR%%/packter_tc/itm.conf X%%PACKTERTC%%%%DATADIR%%/packter_tc/packter_tc.pl X%%PACKTERTC%%%%DATADIR%%/packter_tc/xsd.pl X@dirrm %%DATADIR%%/packter_tc X@dirrm %%DATADIR%% 02adb2d230bde72f1f75aeb187caece3 echo x - packter-agent/distinfo sed 's/^X//' >packter-agent/distinfo << '905c53f811fe3d16fc27993a5a9355f5' XSHA256 (PackterAgent-2.5.tar.gz) = 24c01c0fc2c5254768e53845bccd63ba6fc26e63e5ff4bd890c3dda102555882 XSIZE (PackterAgent-2.5.tar.gz) = 257778 905c53f811fe3d16fc27993a5a9355f5 echo x - packter-agent/Makefile sed 's/^X//' >packter-agent/Makefile << '57c40e807ebab528aeef8f4704f0a2e1' X# New ports collection makefile for: packter-agent X# Date created: 2012-09-05 X# Whom: masaki X# X# $FreeBSD$ X# X XPORTNAME= packter-agent XPORTVERSION= 2.5 XCATEGORIES= net XMASTER_SITES= http://www.packter.net/ XDISTNAME= PackterAgent-${PORTVERSION} X XMAINTAINER= masaki@club.kyutech.ac.jp XCOMMENT= An agent of the tool for graphical Internet traffic visualization X XLICENSE= BSD XLICENSE_FILE= ${WRKSRC}/LICENSE X XGNU_CONFIGURE= yes XUSE_GNOME= glib20 X XPORTDOCS= AUTHORS COPYING ChangeLog INSTALL LICENSE NEWS README X XOPTIONS_DEFINE= IPV6 PACKTERTC XPACKTERTC_DESC= Install Packter TC XOPTIONS_DEFAULT= IPV6 X X.include <bsd.port.options.mk> X X.if ${PORT_OPTIONS:MIPV6} XCONFIGURE_ARGS+= --enable-ipv6 X.else XCONFIGURE_ARGS+= --disable-ipv6 X.endif X X.if ${PORT_OPTIONS:MPACKTERTC} XUSE_PERL5_RUN= yes XRUN_DEPENDS+= p5-XML-Pastor>=0:${PORTSDIR}/devel/p5-XML-Pastor XPLIST_SUB+= PACKTERTC="" X.else XPLIST_SUB+= PACKTERTC="@comment " X.endif X Xpost-install: X.if ${PORT_OPTIONS:MPACKTERTC} X @${MKDIR} ${DATADIR} X ${CP} -pr ${WRKSRC}/packter_tc ${DATADIR}/ X.endif X X.for f in packter.conf X @if [ ! -f ${PREFIX}/etc/${f} ]; then \ X ${CP} -p ${PREFIX}/etc/${f}.sample ${PREFIX}/etc/${f} ; \ X fi X.endfor X X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X.for f in ${PORTDOCS} X ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} X.endfor X.endif X X.include <bsd.port.mk> 57c40e807ebab528aeef8f4704f0a2e1 echo x - packter-agent/pkg-descr sed 's/^X//' >packter-agent/pkg-descr << 'ddffe9f9c1b7cada91bf0b7c9828e1f7' XPACKTER is a free and opensource software for visualization of Internet Xtraffic. XPACKTER systems are composed of Packter Viewer and Packter Agent. XPackter Viewer draws a flying object by receiving Packter Protocol from XPackter Agent. X XWWW: http://www.packter.net ddffe9f9c1b7cada91bf0b7c9828e1f7 exit --- packter-agent.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209050324.q853OhAO090497>