]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/vdr
Updated esniper to 2-19-0
[people/pmueller/ipfire-2.x.git] / lfs / vdr
CommitLineData
debeaeaa
AF
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
25include Config
26
27VER = 1.6.0
debeaeaa
AF
28THISAPP = vdr-$(VER)
29DL_FILE = $(THISAPP).tar.bz2
98248635 30DL_FILE1 = vdr-streamdev-20080325-http-0_4.tgz
9232685b 31DL_FILE2 = vdr-softdevice-cvs-2008-04-16.tar.bz2
7438d80a 32DL_FILE3 = vidix-1.0.0.tar.bz2
98248635 33
debeaeaa
AF
34DL_FROM = $(URL_IPFIRE)
35DIR_APP = $(DIR_SRC)/$(THISAPP)
36TARGET = $(DIR_INFO)/$(THISAPP)
37PROG = vdr
7438d80a 38PAK_VER = 2
debeaeaa
AF
39
40DEPS = "freefont fontconfig"
41
42###############################################################################
43# Top-level Rules
44###############################################################################
45
9232685b 46objects = $(DL_FILE) $(DL_FILE1) $(DL_FILE2)
debeaeaa
AF
47
48$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
98248635 49$(DL_FILE1) = $(DL_FROM)/$(DL_FILE1)
9232685b 50$(DL_FILE2) = $(DL_FROM)/$(DL_FILE2)
debeaeaa
AF
51
52$(DL_FILE)_MD5 = 76f4ebe6525a35e33313d27a3f8e80c0
98248635 53$(DL_FILE1)_MD5 = 874026c643601692077c42ee7a70b720
9232685b 54$(DL_FILE2)_MD5 = 2b2eec38a653c205967849efb907b707
7438d80a
CS
55$(DL_FILE3)_MD5 = 3471d1f385871f7e00e6e178ccdfff0b
56
debeaeaa
AF
57
58install : $(TARGET)
59
60check : $(patsubst %,$(DIR_CHK)/%,$(objects))
61
98248635 62download : $(patsubst %,$(DIR_DL)/%,$(objects))
debeaeaa
AF
63
64md5 : $(subst %,%_MD5,$(objects))
65
66dist:
67 @$(PAK)
68
69###############################################################################
70# Downloading, checking, md5sum
71###############################################################################
72
73$(patsubst %,$(DIR_CHK)/%,$(objects)) :
74 @$(CHECK)
75
76$(patsubst %,$(DIR_DL)/%,$(objects)) :
77 @$(LOAD)
78
79$(subst %,%_MD5,$(objects)) :
80 @$(MD5)
81
82###############################################################################
83# Installation Details
84###############################################################################
85
86$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
87 @$(PREBUILD)
88 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
98248635
AF
89 cd $(DIR_APP)/PLUGINS/src && tar zxf $(DIR_DL)/$(DL_FILE1)
90 cd $(DIR_APP)/PLUGINS/src && ln -s streamdev-0.3.3-20080325-http streamdev
9232685b
AF
91 cd $(DIR_APP)/PLUGINS/src && tar jxf $(DIR_DL)/$(DL_FILE2)
92 cd $(DIR_APP)/PLUGINS/src && ln -s softdevice-cvs-2008-04-16 softdevice
93 cd $(DIR_APP)/PLUGINS/src/softdevice && ./configure
7438d80a
CS
94 cd $(DIR_APP)/PLUGINS/src && tar jxf $(DIR_DL)/$(DL_FILE3)
95 cd $(DIR_APP)/PLUGINS/src && ln -s vidix-1.0.0 vidix
96 cd $(DIR_APP)/PLUGINS/src/vidix && ./configure
98248635
AF
97 cd $(DIR_APP) && make VIDEODIR=/var/video plugins $(MAKETUNING)
98 cd $(DIR_APP) && make VIDEODIR=/var/video vdr $(MAKETUNING)
7438d80a 99 cd $(DIR_APP) && make DFB_SUPPORT=1 FB_SUPPORT=1 VIDIX_SUPPORT=1 $(MAKETUNING)
debeaeaa 100 cd $(DIR_APP) && make PREFIX=. DESTDIR=/opt/vdr/ install
a12b20cb 101 -mkdir -p /opt/vdr/etc
42d62a83 102 cd $(DIR_APP) && install *.conf /opt/vdr/etc/
a12b20cb 103 cp -Rvf $(DIR_SRC)/config/vdr /opt
0e07ae54
AF
104 ln -sf ../init.d/vdr /etc/rc.d/rc3.d/S60vdr
105 ln -sf ../init.d/vdr /etc/rc.d/rc0.d/K40vdr
106 ln -sf ../init.d/vdr /etc/rc.d/rc6.d/K40vdr
2a8c4fcb
AF
107 install -v -m 644 $(DIR_SRC)/config/backup/includes/vdr \
108 /var/ipfire/backup/addons/includes/vdr
debeaeaa
AF
109 @rm -rf $(DIR_APP)
110 @$(POSTBUILD)