summaryrefslogtreecommitdiffstats
path: root/package/dvbsnoop
diff options
context:
space:
mode:
authorCarsten Schoenert <c.schoenert@t-online.de>2013-01-13 03:00:03 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-01-13 21:02:01 +0100
commit06c22d620abebf0f02588aa1acdabee2dc24a612 (patch)
treed0b47a78ad4e023f9bcc57bc3b6298d148a04bc5 /package/dvbsnoop
parent0295258dadea23b21eb0890b94e59b6258759268 (diff)
downloadbuildroot-novena-06c22d620abebf0f02588aa1acdabee2dc24a612.tar.gz
buildroot-novena-06c22d620abebf0f02588aa1acdabee2dc24a612.zip
dvbsnoop: new package dvbsnoop
dvbsnoop is a DVB/MPEG stream analyzer. It's designed to debug, dump or view the digital stream info available via satellite -> DVB-S, DVB-S2 cable -> DVB-C, DVB-C2 terrestrial -> DVB-T, DVB-T2 dvbsnoop can be used on any digital settopbox that running on linux and provides the DVB APIv3. It's also usable on classical PCs that contains a DVB hardware (PCI Card or USB Plug). [Peter: needs largefile, fix help text] Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/dvbsnoop')
-rw-r--r--package/dvbsnoop/Config.in25
-rw-r--r--package/dvbsnoop/dvbsnoop.mk12
2 files changed, 37 insertions, 0 deletions
diff --git a/package/dvbsnoop/Config.in b/package/dvbsnoop/Config.in
new file mode 100644
index 000000000..f21191ad4
--- /dev/null
+++ b/package/dvbsnoop/Config.in
@@ -0,0 +1,25 @@
+config BR2_PACKAGE_DVBSNOOP
+ bool "dvbsnoop"
+ depends on BR2_LARGEFILE
+ help
+ Dvbsnoop is just a simple tool to analyze, view or debug a transport
+ stream (TS), program elementary stream (PES) or even a program stream
+ (PS). Dvbsnoop is trying to get input mostly direct from a frontend
+ (satellite or cable tuner inside a set-top box for example) via DVB
+ APIv3 to view into a TS, or a demux to view PES or PS (also mostly
+ inside the set-top box or even PCI Card or USB Plug) but also from a
+ file (recorded TS).
+ Dvbsnoop is working well on SD transport streams but may have some
+ limited functionality on HD transport streams (DVB-{C,S,T}2 because
+ of missing knowledge how to handle it.
+
+ Dvbsnoop itself doesn't do the tuning on the frontend, this has to be
+ done by external helpers or manually driver call.
+ The dvbsnoop tool was written while developing the software Neutrino
+ on the set-top box DBox2.
+
+ http://dvbsnoop.sourceforge.net
+ http://en.wikipedia.org/wiki/DBox2
+
+comment "dvbsnoop requires a toolchain with LARGEFILE support"
+ depends on !BR2_LARGEFILE
diff --git a/package/dvbsnoop/dvbsnoop.mk b/package/dvbsnoop/dvbsnoop.mk
new file mode 100644
index 000000000..dd62e8c84
--- /dev/null
+++ b/package/dvbsnoop/dvbsnoop.mk
@@ -0,0 +1,12 @@
+#############################################################
+#
+# dvbsnoop
+#
+#############################################################
+
+DVBSNOOP_VERSION = 1.4.50
+DVBSNOOP_SITE = http://downloads.sourceforge.net/project/dvbsnoop/dvbsnoop/dvbsnoop-$(DVBSNOOP_VERSION)
+DVBSNOOP_LICENSE = GPLv2
+DVBSNOOP_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))