summaryrefslogtreecommitdiffstats
path: root/package/tvheadend/tvheadend-001-no-auto-download-dvbscans.patch
blob: b64627e5cfc30749b6c58e6f28abdcc76b674c1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Do not download transponder data as part of the build

If dvb-scan is enabled, tvheadend will download the transponders data
from the dvb-apps package. This does not play well with buildroot.

Instead, we rely on the dvb-apps package to install those files, so
it is no longer needed to install those as part of tvheadend.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

diff -durN tvheadend-v3.5.orig/configure tvheadend-v3.5/configure
--- tvheadend-v3.5.orig/configure	2013-02-15 14:41:26.000000000 +0100
+++ tvheadend-v3.5/configure	2013-02-16 15:41:16.675556099 +0100
@@ -179,15 +179,16 @@
 #
 # DVB scan
 #
-if enabled linuxdvb && enabled dvbscan; then
-  printf "${TAB}" "fetching dvb-scan files ..."
-  "${ROOTDIR}/support/getmuxlist"
-  if [ $? -ne 0 ]; then
-    echo "fail"
-    die "Failed to fetch dvb-scan data (use --disable-dvbscan)"
-  fi
-  echo "ok"
-fi
+# For buildroot, we already installed those files via the dvb-apps package
+#if enabled linuxdvb && enabled dvbscan; then
+#  printf "${TAB}" "fetching dvb-scan files ..."
+#  "${ROOTDIR}/support/getmuxlist"
+#  if [ $? -ne 0 ]; then
+#    echo "fail"
+#    die "Failed to fetch dvb-scan data (use --disable-dvbscan)"
+#  fi
+#  echo "ok"
+#fi
 
 # ###########################################################################
 # Write config
diff -durN tvheadend-v3.5.orig/Makefile tvheadend-v3.5/Makefile
--- tvheadend-v3.5.orig/Makefile	2013-02-15 14:41:26.000000000 +0100
+++ tvheadend-v3.5/Makefile	2013-02-16 15:41:38.218821287 +0100
@@ -211,7 +211,7 @@
 SRCS-${CONFIG_BUNDLE}     += bundle.c
 BUNDLES-yes               += docs/html docs/docresources src/webui/static
 BUNDLES-yes               += data/conf
-BUNDLES-${CONFIG_DVBSCAN} += data/dvb-scan
+#BUNDLES-${CONFIG_DVBSCAN} += data/dvb-scan
 BUNDLES                    = $(BUNDLES-yes)
 
 #
diff -durN tvheadend-v3.5.orig/support/posix.mk tvheadend-v3.5/support/posix.mk
--- tvheadend-v3.5.orig/support/posix.mk	2013-02-15 14:41:26.000000000 +0100
+++ tvheadend-v3.5/support/posix.mk	2013-02-16 15:42:41.015290003 +0100
@@ -15,6 +15,10 @@
 
 	find ${DESTDIR}${datadir}/tvheadend -name .git -exec rm -rf {} \; &>/dev/null || /bin/true
 
+	mkdir -p ${DESTDIR}${datadir}/tvheadend/data
+	rm -f ${DESTDIR}${datadir}/tvheadend/data/dvb-scan
+	ln -sf /usr/share/dvb ${DESTDIR}${datadir}/tvheadend/data/dvb-scan
+
 uninstall:
 	rm -f ${DESTDIR}${bindir}/tvheadend
 	rm -f ${DESTDIR}${mandir}/tvheadend.1