New port added, thanks!
Uplog is UDP based ping program with an "ASCII-graphical" log file. For more information: http://www.nerdlabs.org/projects/uplog.php PR: 53373 Submitted by: Kirill Ponomarew <ponomarew@oberon.net>
This commit is contained in:
parent
8091876944
commit
df7e3998bd
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=83136
8 changed files with 55 additions and 0 deletions
|
@ -687,6 +687,7 @@
|
|||
SUBDIR += udptunnel
|
||||
SUBDIR += unison
|
||||
SUBDIR += unix2tcp
|
||||
SUBDIR += uplog
|
||||
SUBDIR += urlendec
|
||||
SUBDIR += utftpd
|
||||
SUBDIR += v6eval
|
||||
|
|
1
net/uplog/192.168.1.101
Normal file
1
net/uplog/192.168.1.101
Normal file
|
@ -0,0 +1 @@
|
|||
2003-06-17 14:18 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
2
net/uplog/192.168.1.102
Normal file
2
net/uplog/192.168.1.102
Normal file
|
@ -0,0 +1,2 @@
|
|||
2003-06-17 14:18 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
||||
2003-06-17 14:18 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
1
net/uplog/192.168.1.109
Normal file
1
net/uplog/192.168.1.109
Normal file
|
@ -0,0 +1 @@
|
|||
2003-06-17 14:18 ...........................................................
|
36
net/uplog/Makefile
Normal file
36
net/uplog/Makefile
Normal file
|
@ -0,0 +1,36 @@
|
|||
# New ports collection makefile for: uplog
|
||||
# Date created: 16.06.2003
|
||||
# Whom: Kirill Ponomarew <ponomarew@oberon.net>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= uplog
|
||||
PORTVERSION= 0.1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://www.nerdlabs.org/downloads/${PORTNAME}/
|
||||
|
||||
MAINTAINER= ponomarew@oberon.net
|
||||
COMMENT= UDP-based ping programm
|
||||
|
||||
USE_GETOPT_LONG= yes
|
||||
USE_REINPLACE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
|
||||
post-patch:
|
||||
${REINPLACE_CMD} -e \
|
||||
's|#include <malloc.h>||g' \
|
||||
${WRKSRC}/${PORTNAME}.c
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
.for i in README
|
||||
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
net/uplog/distinfo
Normal file
1
net/uplog/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (uplog-0.1.tar.gz) = 3b4e9e0bcc76ca9648ef4846577ff13d
|
10
net/uplog/pkg-descr
Normal file
10
net/uplog/pkg-descr
Normal file
|
@ -0,0 +1,10 @@
|
|||
Uplog is an UDP-based ping program that gives an ASCII
|
||||
graphical log of packet loss. Once per second, it sends a UDP
|
||||
packet to the echo port of the target host and waits for a
|
||||
reply. If it gets a reply an X is written, otherwise a dot is
|
||||
written to the log file. If a packet with an incorrect sequence
|
||||
number arrives, a colon is written to the log file. By
|
||||
examining the log file, one can easily see when and how the
|
||||
packet losses occur.
|
||||
|
||||
WWW: http://www.nerdlabs.org/projects/uplog.php
|
3
net/uplog/pkg-plist
Normal file
3
net/uplog/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
bin/uplog
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
Loading…
Reference in a new issue