ssmping is a tool for checking whether a host can receive SSM from

another. If a host runst ssmpingd, users on other hosts can check
that they receive from this host by running the ssmping tool.
asmping is similar to ssmping, but checks for ASM rather than SSM.

WWW: http://www.venaas.no/multicast/ssmping/

PR:		ports/102322
Submitted by:	dikshie <dikshie@lapi.itb.ac.id>
Approved by:	krion (mentor)
This commit is contained in:
Martin Wilke 2006-08-25 19:02:32 +00:00
parent f39962accd
commit 0686f49cef
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=171404
5 changed files with 76 additions and 0 deletions

View file

@ -737,6 +737,7 @@
SUBDIR += ssldump
SUBDIR += ssltunnel-client
SUBDIR += ssltunnel-server
SUBDIR += ssmping
SUBDIR += stone
SUBDIR += straw
SUBDIR += stund

34
net/ssmping/Makefile Normal file
View file

@ -0,0 +1,34 @@
# New ports collection makefile for: ssmping
# Date created: 20 August 2006
# Whom: dikshie@lapi.itb.ac.id
#
# $FreeBSD$
#
PORTNAME= ssmping
PORTVERSION= 0.9
CATEGORIES= net
MASTER_SITES= http://www.venaas.no/multicast/ssmping/
MAINTAINER= dikshie@lapi.itb.ac.id
COMMENT= Ping for ASM and SSM
MAN1= ssmping.1 \
asmping.1 \
mcfirst.1
PLIST_FILES= bin/ssmping \
bin/asmping \
bin/mcfirst \
sbin/ssmpingd
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ssmping ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/asmping ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/mcfirst ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/ssmpingd ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/ssmping.1 ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/asmping.1 ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/mcfirst.1 ${PREFIX}/man/man1
.include <bsd.port.mk>

3
net/ssmping/distinfo Normal file
View file

@ -0,0 +1,3 @@
MD5 (ssmping-0.9.tar.gz) = 08350cba127b63ed7cdd662e7a0b37a1
SHA256 (ssmping-0.9.tar.gz) = e9cde8a131800038b7e88d5a335fa08cf40d33f5b7db9bc5228a68c639f6adb9
SIZE (ssmping-0.9.tar.gz) = 16464

View file

@ -0,0 +1,32 @@
--- Makefile Sun Jun 4 17:16:04 2006
+++ Makefile-bsd Sun Jun 4 17:16:04 2006
@@ -2,12 +2,19 @@
all: ssmping asmping ssmpingd mcfirst
-OBJ = ssmpngcl.o ssmpingc.o
+OBJ = ssmpngcl.o ssmpingc.o joinch.o joingrp.o
+
+ssmping: $(OBJ)
+ $(CC) $(CFLAGS) $(OBJ) -o ssmping ssmping.c
+
+asmping: $(OBJ)
+ $(CC) $(CFLAGS) $(OBJ) -o asmping asmping.c
-ssmping: $(OBJ) joinch.o
-asmping: $(OBJ) joingrp.o
-mcfirst: $(OBJ) joinch.o joingrp.o
ssmpingd: $(OBJ)
+ $(CC) $(CFLAGS) $(OBJ) -o ssmpingd ssmpingd.c
+
+mcfirst: $(OBJ)
+ $(CC) $(CFLAGS) $(OBJ) -o mcfirst mcfirst.c
install: ssmping asmping ssmpingd mcfirst
install -D ssmping $(DESTDIR)$(PREFIX)/bin/ssmping
@@ -19,4 +26,4 @@
install -D mcfirst.1 $(DESTDIR)$(PREFIX)/man/man1/mcfirst.1
clean:
- rm -f $(OBJ) joinch.o joingrp.o ssmping asmping ssmpingd mcfirst
+ rm -f $(OBJ) ssmping asmping ssmpingd mcfirst

6
net/ssmping/pkg-descr Normal file
View file

@ -0,0 +1,6 @@
ssmping is a tool for checking whether a host can receive SSM from
another. If a host runst ssmpingd, users on other hosts can check
that they receive from this host by running the ssmping tool.
asmping is similar to ssmping, but checks for ASM rather than SSM.
WWW: http://www.venaas.no/multicast/ssmping/