1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/net-mgmt/ipacco/Makefile
Ion-Mihai Tetcu 1622717d49 IPAcco is a free software package that helps a network admin
to collect, visualize and analyze IP accounting data from the
Cisco routers.
Cisco routers themselves are capable of collecting IP accounting
information . i.e. an unordered set of IP source-destination
pairs along with a byte and packet counters corresponding to all
network traffic flows that passed through the router's interfaces.
These data can be a useful source for various analysis procedures
and billing systems but by itself, in their raw form they are
rather difficult to read and understand. In addition, a router
cannot keep a lot of data . its memory is needed for purposes
other than remembering what traffic, from what sources and where
it forwarded two month ago.

WWW:	http://ipacco.sourceforge.net/

- Babak Farrokhi
babak@farrokhi.net

PR:		ports/99451
Submitted by:	Babak Farrokhi <babak@farrokhi.net>
2006-07-02 19:26:42 +00:00

69 lines
1.8 KiB
Makefile

# New ports collection makefile for: ipacco
# Date created: 25 June 2006
# Whom: Babak Farrokhi <babak@farrokhi.net>
#
# $FreeBSD$
#
PORTNAME= ipacco
PORTVERSION= 0.2.0.1
CATEGORIES= net-mgmt www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ipacco
MAINTAINER= babak@farrokhi.net
COMMENT= Web based tool to analyze Cisco IP accounting data
RUN_DEPENDS= ${LOCALBASE}/include/tclExtend.h:${PORTSDIR}/lang/tclX \
${TCL_LIBDIR}/mysqltcl:${PORTSDIR}/databases/mysqltcl \
${LOCALBASE}/lib/tcllib1.7/pkgIndex.tcl:${PORTSDIR}/devel/tcllib
NO_BUILD= yes
USE_PHP= mysql gd
USE_TCL= yes
IPACCO?= www/${PORTNAME}
IPACCO_WEB= ${PREFIX}/${IPACCO}
PLIST_SUB+= IPACCO_WEB=${IPACCO}
SUB_LIST+= IPACCO_WEB=${IPACCO} \
PORTDOCS=${PORTDOCS} \
PORTNAME=${PORTNAME}
SUB_FILES= pkg-message
.if !defined(NOPORTDOCS)
PORTDOCS1= INSTALL.html INSTALL.txt RELNOTES.html RELNOTES.txt
PORTDOCS2= README.html README.txt LICENSE CreateDB.sql
.endif
pre-install:
@${FIND} ${WRKSRC} -name '*.bak' -type f -print0 | ${XARGS} -0 ${RM} -f
post-patch:
@${REINPLACE_CMD} -e 's|/usr/bin/tclsh|${TCLSH}|' \
${WRKSRC}/datapump/ipacco-datapump.tcl
@${REINPLACE_CMD} -e 's|\<?=|\<?php print|g' \
${WRKSRC}/html/*.php
do-install:
-@${MKDIR} ${IPACCO_WEB}
@${MKDIR} ${PREFIX}/etc/${PORTNAME}
@${CP} -R ${WRKSRC}/html/* ${IPACCO_WEB}
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${IPACCO_WEB}
@${INSTALL_DATA} ${WRKSRC}/datapump/ipacco-datapump.cfg \
${PREFIX}/etc/${PORTNAME}
@${INSTALL_SCRIPT} ${WRKSRC}/datapump/ipacco-datapump.tcl \
${PREFIX}/sbin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS1}
@${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR}
.endfor
.for f in ${PORTDOCS2}
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>