summaryrefslogtreecommitdiff
path: root/multimedia/tstools/Makefile
diff options
context:
space:
mode:
authorjmcneill <jmcneill@pkgsrc.org>2009-01-26 22:49:28 +0000
committerjmcneill <jmcneill@pkgsrc.org>2009-01-26 22:49:28 +0000
commit437ab8b14f93d87630fcfbca03b2d77020788432 (patch)
tree2b919e9345ab5afe6460a170916447178d07b809 /multimedia/tstools/Makefile
parent3de452ecde0bb07be237a8357be25028e1c99118 (diff)
downloadpkgsrc-437ab8b14f93d87630fcfbca03b2d77020788432.tar.gz
Import tstools version 1.11.
tstools is a set of cross-platform command line tools for working with MPEG data. The emphasis is on relatively simple tools which concentrate on MPEG (H.264 and H.262) data packaged according to H.222 (i.e., TS or PS), with a particular interest in checking for conformance. Transport Stream (TS) is typically used for distribution of cable and satellite data. Program Stream (PS) is typically used to store data on DVDs. The tools are focused on: * Quick reporting of useful data (tsinfo, stream_type) * Giving a quick overview of the entities in the stream (esdots, psdots) * Reporting on TS packets (tsreport) or ES units/frames/fields (esreport) * Simple manipulation of stream data (es2ts, esfilter, esreverse, esmerge, ts2es) * Streaming of data, possibly with introduced errors (tsplay)
Diffstat (limited to 'multimedia/tstools/Makefile')
-rw-r--r--multimedia/tstools/Makefile46
1 files changed, 46 insertions, 0 deletions
diff --git a/multimedia/tstools/Makefile b/multimedia/tstools/Makefile
new file mode 100644
index 00000000000..2af7dbd9f38
--- /dev/null
+++ b/multimedia/tstools/Makefile
@@ -0,0 +1,46 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/01/26 22:49:28 jmcneill Exp $
+#
+
+DISTNAME= tstools-1_11
+PKGNAME= ${DISTNAME:S/_/./}
+CATEGORIES= multimedia
+MASTER_SITES= http://download.berlios.de/tstools/ \
+ http://download2.berlios.de/tstools/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= tech-multimedia@NetBSD.org
+HOMEPAGE= http://tstools.berlios.de/
+COMMENT= Cross-platform command line tools for working with MPEG data
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+WRKSRC= ${WRKDIR}/${DISTNAME:S/_/./}
+USE_TOOLS+= gmake
+
+TSPROGS=es2ts \
+ esdots \
+ esfilter \
+ esmerge \
+ esreport \
+ esreverse \
+ m2ts2ts \
+ pcapreport \
+ ps2ts \
+ psdots \
+ psreport \
+ stream_type \
+ ts2es \
+ ts_packet_insert \
+ tsinfo \
+ tsplay \
+ tsreport \
+ tsserve
+
+do-install:
+ ${INSTALL_PROGRAM_DIR} ${DESTDIR}${PREFIX}/bin
+.for tsprog in ${TSPROGS}
+ ${INSTALL_PROGRAM} ${WRKSRC}/bin/${tsprog} \
+ ${DESTDIR}${PREFIX}/bin/${tsprog}
+.endfor
+
+.include "../../mk/bsd.pkg.mk"