Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Oct 2016 12:34:35 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r424563 - in head/multimedia: . multicat
Message-ID:  <201610241234.u9OCYZ7h016246@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Mon Oct 24 12:34:35 2016
New Revision: 424563
URL: https://svnweb.freebsd.org/changeset/ports/424563

Log:
  - Add multimedia/multicat
  
  multicat is a 1 input/1 output application. Inputs and outputs can
  be network streams (unicast and multicast), files, directories,
  character devices or FIFOs. It is thought to be a multicast equivalent
  of the popular netcat tool. Typical applications are recording live
  transport streams, or playing out TS files without modification.
  Also it is able to record a continuous stream into a directory,
  rotate the files periodically, and make seamless extracts from it.
  
  Multicat tries to rebuild the internal clock of the input stream;
  but it wants to remain agnostic of what is transported, so in case
  of files the said clock is stored to an auxiliary file (example.aux
  accompanies example.ts) while recording. Other inputs are considered
  "live", and the input clock is simply derived from the reception
  time of the packets.
  
  WWW: http://www.videolan.org/projects/multicat.html

Added:
  head/multimedia/multicat/
  head/multimedia/multicat/Makefile   (contents, props changed)
  head/multimedia/multicat/distinfo   (contents, props changed)
  head/multimedia/multicat/pkg-descr   (contents, props changed)
Modified:
  head/multimedia/Makefile

Modified: head/multimedia/Makefile
==============================================================================
--- head/multimedia/Makefile	Mon Oct 24 12:26:26 2016	(r424562)
+++ head/multimedia/Makefile	Mon Oct 24 12:34:35 2016	(r424563)
@@ -267,6 +267,7 @@
     SUBDIR += msdl
     SUBDIR += msopenh264
     SUBDIR += msx264
+    SUBDIR += multicat
     SUBDIR += mxflib
     SUBDIR += mythtv
     SUBDIR += mythtv-frontend

Added: head/multimedia/multicat/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/multicat/Makefile	Mon Oct 24 12:34:35 2016	(r424563)
@@ -0,0 +1,39 @@
+# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	multicat
+PORTVERSION=	git20161007
+CATEGORIES=	net multimedia
+
+MAINTAINER=	amdmi3@FreeBSD.org
+COMMENT=	Simple and efficient multicast and transport stream manipulation
+
+LICENSE=	GPLv2+
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+BUILD_DEPENDS=	${LOCALBASE}/include/bitstream/mpeg/ts.h:multimedia/bitstream
+
+USE_GITHUB=	yes # XXX: FreeBSD fixes not upstreamed yet
+GH_ACCOUNT=	AMDmi3
+GH_TAGNAME=	b551ed4
+
+USES=		localbase
+ALL_TARGET=	${PORTNAME}
+
+PORTDOCS=	AUTHORS Changelog NEWS README
+PLIST_FILES=	bin/${PORTNAME} \
+		man/man1/${PORTNAME}.1.gz
+
+OPTIONS_DEFINE=	DOCS
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
+
+do-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+.for f in ${PORTDOCS}
+	${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
+.endfor
+
+.include <bsd.port.mk>

Added: head/multimedia/multicat/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/multicat/distinfo	Mon Oct 24 12:34:35 2016	(r424563)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1475850828
+SHA256 (AMDmi3-multicat-git20161007-b551ed4_GH0.tar.gz) = 41a501a654490f6ec3c860ef28d882196bacf485fe04a4da162605c9329e41b3
+SIZE (AMDmi3-multicat-git20161007-b551ed4_GH0.tar.gz) = 42902

Added: head/multimedia/multicat/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/multicat/pkg-descr	Mon Oct 24 12:34:35 2016	(r424563)
@@ -0,0 +1,16 @@
+multicat is a 1 input/1 output application. Inputs and outputs can
+be network streams (unicast and multicast), files, directories,
+character devices or FIFOs. It is thought to be a multicast equivalent
+of the popular netcat tool. Typical applications are recording live
+transport streams, or playing out TS files without modification.
+Also it is able to record a continuous stream into a directory,
+rotate the files periodically, and make seamless extracts from it.
+
+Multicat tries to rebuild the internal clock of the input stream;
+but it wants to remain agnostic of what is transported, so in case
+of files the said clock is stored to an auxiliary file (example.aux
+accompanies example.ts) while recording. Other inputs are considered
+"live", and the input clock is simply derived from the reception
+time of the packets.
+
+WWW: http://www.videolan.org/projects/multicat.html



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610241234.u9OCYZ7h016246>