]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/vdr
Merge branch 'master' into perl_5.12.2
[people/pmueller/ipfire-2.x.git] / lfs / vdr
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 1.6.0
28 THISAPP = vdr-$(VER)
29 DL_FILE = $(THISAPP).tar.bz2
30 DL_FILE1 = vdr-streamdev-20080325-http-0_4.tgz
31 DL_FILE2 = vdr-softdevice-0.5.0.tgz
32 DL_FILE3 = vidix-1.0.0.tar.bz2
33 DL_FILE4 = vdr-epgsearch-0.9.24.tgz
34
35 DL_FROM = $(URL_IPFIRE)
36 DIR_APP = $(DIR_SRC)/$(THISAPP)
37 TARGET = $(DIR_INFO)/$(THISAPP)
38 PROG = vdr
39 PAK_VER = 5
40
41 DEPS = "freefont fontconfig"
42
43 ###############################################################################
44 # Top-level Rules
45 ###############################################################################
46
47 objects = $(DL_FILE) $(DL_FILE1) $(DL_FILE2) $(DL_FILE3) $(DL_FILE4)
48
49 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
50 $(DL_FILE1) = $(DL_FROM)/$(DL_FILE1)
51 $(DL_FILE2) = $(DL_FROM)/$(DL_FILE2)
52 $(DL_FILE3) = $(DL_FROM)/$(DL_FILE3)
53 $(DL_FILE4) = $(DL_FROM)/$(DL_FILE4)
54
55 $(DL_FILE)_MD5 = 76f4ebe6525a35e33313d27a3f8e80c0
56 $(DL_FILE1)_MD5 = 874026c643601692077c42ee7a70b720
57 $(DL_FILE2)_MD5 = e106876497db478f3b9ba4da0e5532f8
58 $(DL_FILE3)_MD5 = 3471d1f385871f7e00e6e178ccdfff0b
59 $(DL_FILE4)_MD5 = 4f0b1d7bdc6f24478f2670769547d7db
60
61 install : $(TARGET)
62
63 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
64
65 download : $(patsubst %,$(DIR_DL)/%,$(objects))
66
67 md5 : $(subst %,%_MD5,$(objects))
68
69 dist:
70 @$(PAK)
71
72 ###############################################################################
73 # Downloading, checking, md5sum
74 ###############################################################################
75
76 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
77 @$(CHECK)
78
79 $(patsubst %,$(DIR_DL)/%,$(objects)) :
80 @$(LOAD)
81
82 $(subst %,%_MD5,$(objects)) :
83 @$(MD5)
84
85 ###############################################################################
86 # Installation Details
87 ###############################################################################
88
89 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
90 @$(PREBUILD)
91 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
92 cd $(DIR_APP)/PLUGINS/src && tar zxf $(DIR_DL)/$(DL_FILE1)
93 cd $(DIR_APP)/PLUGINS/src && ln -s streamdev-0.3.3-20080325-http streamdev
94 cd $(DIR_APP)/PLUGINS/src && tar zxf $(DIR_DL)/$(DL_FILE2)
95 cd $(DIR_APP)/PLUGINS/src && ln -s softdevice-0.5.0 softdevice
96 cd $(DIR_APP)/PLUGINS/src/softdevice && ./configure
97 cd $(DIR_APP)/PLUGINS/src && tar jxf $(DIR_DL)/$(DL_FILE3)
98 cd $(DIR_APP)/PLUGINS/src && ln -s vidix-1.0.0 vidix
99 cd $(DIR_APP)/PLUGINS/src/vidix && ./configure
100 cd $(DIR_APP)/PLUGINS/src && tar xvf $(DIR_DL)/$(DL_FILE4)
101 cd $(DIR_APP)/PLUGINS/src && ln -s epgsearch-0.9.24 epgsearch
102 cd $(DIR_APP) && patch -Np1 -i PLUGINS/src/epgsearch/patches/MainMenuHooks-v1_0.patch
103 cd $(DIR_APP) && make VIDEODIR=/var/video plugins $(MAKETUNING) $(EXTRA_MAKE)
104 cd $(DIR_APP) && make VIDEODIR=/var/video vdr $(MAKETUNING) $(EXTRA_MAKE)
105 cd $(DIR_APP) && make DFB_SUPPORT=1 FB_SUPPORT=1 VIDIX_SUPPORT=1 $(MAKETUNING) $(EXTRA_MAKE)
106 cd $(DIR_APP) && make PREFIX=. DESTDIR=/opt/vdr/ install
107 -mkdir -p /opt/vdr/etc
108 cd $(DIR_APP) && install *.conf /opt/vdr/etc/
109 cp -Rvf $(DIR_SRC)/config/vdr /opt
110 ln -sf ../init.d/vdr /etc/rc.d/rc3.d/S60vdr
111 ln -sf ../init.d/vdr /etc/rc.d/rc0.d/K40vdr
112 ln -sf ../init.d/vdr /etc/rc.d/rc6.d/K40vdr
113 install -v -m 644 $(DIR_SRC)/config/backup/includes/vdr \
114 /var/ipfire/backup/addons/includes/vdr
115 @rm -rf $(DIR_APP)
116 @$(POSTBUILD)