]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/vdr
Merge branch 'master' of git://git.ipfire.org/ipfire-2.x
[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-cvs-2008-04-16.tar.bz2
32
33
34 DL_FROM = $(URL_IPFIRE)
35 DIR_APP = $(DIR_SRC)/$(THISAPP)
36 TARGET = $(DIR_INFO)/$(THISAPP)
37 PROG = vdr
38 PAK_VER = 1
39
40 DEPS = "freefont fontconfig"
41
42 ###############################################################################
43 # Top-level Rules
44 ###############################################################################
45
46 objects = $(DL_FILE) $(DL_FILE1) $(DL_FILE2)
47
48 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
49 $(DL_FILE1) = $(DL_FROM)/$(DL_FILE1)
50 $(DL_FILE2) = $(DL_FROM)/$(DL_FILE2)
51
52 $(DL_FILE)_MD5 = 76f4ebe6525a35e33313d27a3f8e80c0
53 $(DL_FILE1)_MD5 = 874026c643601692077c42ee7a70b720
54 $(DL_FILE2)_MD5 = 2b2eec38a653c205967849efb907b707
55
56 install : $(TARGET)
57
58 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
59
60 download : $(patsubst %,$(DIR_DL)/%,$(objects))
61
62 md5 : $(subst %,%_MD5,$(objects))
63
64 dist:
65 @$(PAK)
66
67 ###############################################################################
68 # Downloading, checking, md5sum
69 ###############################################################################
70
71 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
72 @$(CHECK)
73
74 $(patsubst %,$(DIR_DL)/%,$(objects)) :
75 @$(LOAD)
76
77 $(subst %,%_MD5,$(objects)) :
78 @$(MD5)
79
80 ###############################################################################
81 # Installation Details
82 ###############################################################################
83
84 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
85 @$(PREBUILD)
86 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
87 cd $(DIR_APP)/PLUGINS/src && tar zxf $(DIR_DL)/$(DL_FILE1)
88 cd $(DIR_APP)/PLUGINS/src && ln -s streamdev-0.3.3-20080325-http streamdev
89 cd $(DIR_APP)/PLUGINS/src && tar jxf $(DIR_DL)/$(DL_FILE2)
90 cd $(DIR_APP)/PLUGINS/src && ln -s softdevice-cvs-2008-04-16 softdevice
91 cd $(DIR_APP)/PLUGINS/src/softdevice && ./configure
92 cd $(DIR_APP) && make VIDEODIR=/var/video plugins $(MAKETUNING)
93 cd $(DIR_APP) && make VIDEODIR=/var/video vdr $(MAKETUNING)
94 cd $(DIR_APP) && make PREFIX=. DESTDIR=/opt/vdr/ install
95 -mkdir -p /opt/vdr/etc
96 cd $(DIR_APP) && install *.conf /opt/vdr/etc/
97 cp -Rvf $(DIR_SRC)/config/vdr /opt
98 @rm -rf $(DIR_APP)
99 @$(POSTBUILD)