Update to 2.8.2.

PR:		ports/50855
Submitted by:	Lev Walkin <vlm@lionet.info>
This commit is contained in:
Norikatsu Shigemura 2003-04-12 18:56:16 +00:00
parent 91b4157956
commit d62fee81b4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=78807
8 changed files with 70 additions and 8 deletions

View File

@ -6,20 +6,25 @@
#
PORTNAME= ipcad
PORTVERSION= 2.7.1
PORTVERSION= 2.8.2
CATEGORIES= net
MASTER_SITES= http://www.spelio.net.ru/soft/
MAINTAINER= vlm@spelio.net.ru
COMMENT= IP accounting daemon simulating Cisco ip accounting
COMMENT= IP accounting daemon with Cisco-like ip accounting export
MANCOMPRESSED= no
MAN5= ipcad.conf.5
MAN8= ipcad.8
post-install:
strip ${PREFIX}/bin/ipcad
@${STRIP_CMD} ${PREFIX}/bin/ipcad
@${SED} -e "s=!!PREFIX!!=${PREFIX}=g" \
< ${FILESDIR}/ipcad.sh.tmpl \
> ${PREFIX}/etc/rc.d/ipcad.sh
@${CHOWN} ${BINOWN}:${BINGRP} ${PREFIX}/etc/rc.d/ipcad.sh
${INSTALL_MAN} ${WRKSRC}/ipcad.8 ${PREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/ipcad.conf.5 ${PREFIX}/man/man5
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (ipcad-2.7.1.tar.gz) = bfbb0b4706a9cd8cffa34213f8a709e3
MD5 (ipcad-2.8.2.tar.gz) = cf1cf2ef6144ea63b7287b676e8d9b14

View File

@ -0,0 +1,19 @@
#!/bin/sh
# ipcad startup script example.
case "$1" in
start)
if [ -x !!PREFIX!!/bin/ipcad -a -f !!PREFIX!!/etc/ipcad.conf ]; then
!!PREFIX!!/bin/ipcad -rds && echo -n ' ipcad'
fi
;;
stop)
/usr/bin/killall ipcad && /bin/echo -n ' ipcad'
;;
*)
/bin/echo "Usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac
exit 0

View File

@ -0,0 +1,7 @@
===========================================================================
To configure this package, adjust ${PREFIX}/etc/ipcad.conf from
${PREFIX}/etc/ipcad.conf.sample, then start "ipcad -rds"
You should be able to "rsh localhost sh ip accounting" after that
===========================================================================

View File

@ -6,20 +6,25 @@
#
PORTNAME= ipcad
PORTVERSION= 2.7.1
PORTVERSION= 2.8.2
CATEGORIES= net
MASTER_SITES= http://www.spelio.net.ru/soft/
MAINTAINER= vlm@spelio.net.ru
COMMENT= IP accounting daemon simulating Cisco ip accounting
COMMENT= IP accounting daemon with Cisco-like ip accounting export
MANCOMPRESSED= no
MAN5= ipcad.conf.5
MAN8= ipcad.8
post-install:
strip ${PREFIX}/bin/ipcad
@${STRIP_CMD} ${PREFIX}/bin/ipcad
@${SED} -e "s=!!PREFIX!!=${PREFIX}=g" \
< ${FILESDIR}/ipcad.sh.tmpl \
> ${PREFIX}/etc/rc.d/ipcad.sh
@${CHOWN} ${BINOWN}:${BINGRP} ${PREFIX}/etc/rc.d/ipcad.sh
${INSTALL_MAN} ${WRKSRC}/ipcad.8 ${PREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/ipcad.conf.5 ${PREFIX}/man/man5
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (ipcad-2.7.1.tar.gz) = bfbb0b4706a9cd8cffa34213f8a709e3
MD5 (ipcad-2.8.2.tar.gz) = cf1cf2ef6144ea63b7287b676e8d9b14

View File

@ -0,0 +1,19 @@
#!/bin/sh
# ipcad startup script example.
case "$1" in
start)
if [ -x !!PREFIX!!/bin/ipcad -a -f !!PREFIX!!/etc/ipcad.conf ]; then
!!PREFIX!!/bin/ipcad -rds && echo -n ' ipcad'
fi
;;
stop)
/usr/bin/killall ipcad && /bin/echo -n ' ipcad'
;;
*)
/bin/echo "Usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac
exit 0

7
net/ipcad/pkg-message Normal file
View File

@ -0,0 +1,7 @@
===========================================================================
To configure this package, adjust ${PREFIX}/etc/ipcad.conf from
${PREFIX}/etc/ipcad.conf.sample, then start "ipcad -rds"
You should be able to "rsh localhost sh ip accounting" after that
===========================================================================