diff options
author | Ryan Steinmetz <zi@FreeBSD.org> | 2012-09-08 15:17:51 +0000 |
---|---|---|
committer | Ryan Steinmetz <zi@FreeBSD.org> | 2012-09-08 15:17:51 +0000 |
commit | 019c086b3e47ce41c1b504a02ef74144b9e1e7aa (patch) | |
tree | e8dc1647782ba5c9a1967529044ceb1fc2260015 /net | |
parent | 92d80ba9e17c484542740bfca2983f07b9667578 (diff) |
Notes
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/samplicator/Makefile | 25 | ||||
-rw-r--r-- | net/samplicator/distinfo | 2 | ||||
-rw-r--r-- | net/samplicator/pkg-descr | 6 |
4 files changed, 34 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 452aa3ccf6a9..87d6a739fd37 100644 --- a/net/Makefile +++ b/net/Makefile @@ -1038,6 +1038,7 @@ SUBDIR += samba36 SUBDIR += samba4-devel SUBDIR += samba4wins + SUBDIR += samplicator SUBDIR += sbd SUBDIR += scamper SUBDIR += scapy diff --git a/net/samplicator/Makefile b/net/samplicator/Makefile new file mode 100644 index 000000000000..b7ada086aa22 --- /dev/null +++ b/net/samplicator/Makefile @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= samplicator +PORTVERSION= 1.3.7.b6 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} +MASTER_SITE_SUBDIR= samplicator +DISTNAME= samplicator-1.3.7-beta6 + +MAINTAINER= me@falz.net +COMMENT= Receives UDP datagrams and redistributes them to a set of receivers + +GNU_CONFIGURE= yes + +PLIST_FILES= bin/samplicate +PORTDOCS= NEWS README + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/samplicate ${PREFIX}/bin/ +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ +.endif + +.include <bsd.port.mk> diff --git a/net/samplicator/distinfo b/net/samplicator/distinfo new file mode 100644 index 000000000000..c3c31a61b52f --- /dev/null +++ b/net/samplicator/distinfo @@ -0,0 +1,2 @@ +SHA256 (samplicator-1.3.7-beta6.tar.gz) = 8f1da80f2b32ef0e41a720fe1c98905f6e4cb1acb2949dbdddbb665a09655faf +SIZE (samplicator-1.3.7-beta6.tar.gz) = 95603 diff --git a/net/samplicator/pkg-descr b/net/samplicator/pkg-descr new file mode 100644 index 000000000000..018a3fbe7ab7 --- /dev/null +++ b/net/samplicator/pkg-descr @@ -0,0 +1,6 @@ +This small program receives UDP datagrams on a given port, and resends +those datagrams to a specified set of receivers. In addition, a +sampling divisor N may be specified individually for each receiver, +which will then only receive one in N of the received packets. + +WWW: http://samplicator.googlecode.com/ |