]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/vdr
IPsec: Update ipsec.conf for GRE/VTI changes
[people/pmueller/ipfire-2.x.git] / lfs / vdr
CommitLineData
debeaeaa
AF
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
5e23cb6c 4# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
debeaeaa
AF
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
ece4c8cd 27VER = 2.0.5
78403883
AF
28
29# VDRPLUGVER must match with APIVERSION in config.h
30# after change this update also all vdr plugins
08434343 31VDRPLUGVER = 2.0.0
78403883 32
debeaeaa
AF
33THISAPP = vdr-$(VER)
34DL_FILE = $(THISAPP).tar.bz2
98248635 35
debeaeaa
AF
36DL_FROM = $(URL_IPFIRE)
37DIR_APP = $(DIR_SRC)/$(THISAPP)
38TARGET = $(DIR_INFO)/$(THISAPP)
39PROG = vdr
fa49910f 40PAK_VER = 9
debeaeaa 41
5e23cb6c
AF
42SUP_ARCH = none
43
58ccbbd4 44DEPS = "vdr_streamdev"
debeaeaa 45
d2be7786
MT
46MAKE_OPTIONS = \
47 PREFIX=/usr \
48 BINDIR=/usr/bin \
49 CACHEDIR=/var/cache/vdr \
50 CONFDIR=/etc/vdr \
c435d7dc 51 INCDIR=/usr/include \
d2be7786
MT
52 LIBDIR=/usr/lib/vdr \
53 LOCDIR=/usr/share/locale \
54 MANDIR=/usr/share/man \
55 RESDIR=/usr/share/vdr \
56 RUNDIR=/var/run \
57 VARDIR=/var \
58 VIDEODIR=/var/video \
59 CFLAGS="$(CFLAGS)" \
60 CXXFLAGS="$(CXXFLAGS)"
61
debeaeaa
AF
62###############################################################################
63# Top-level Rules
64###############################################################################
65
d2be7786 66objects = $(DL_FILE)
debeaeaa 67
ece4c8cd 68$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
debeaeaa 69
ece4c8cd 70$(DL_FILE)_MD5 = f58b9836a60440fde84480a2e37ee91d
debeaeaa
AF
71
72install : $(TARGET)
73
74check : $(patsubst %,$(DIR_CHK)/%,$(objects))
75
98248635 76download : $(patsubst %,$(DIR_DL)/%,$(objects))
debeaeaa
AF
77
78md5 : $(subst %,%_MD5,$(objects))
79
80dist:
81 @$(PAK)
82
83###############################################################################
84# Downloading, checking, md5sum
85###############################################################################
86
87$(patsubst %,$(DIR_CHK)/%,$(objects)) :
88 @$(CHECK)
89
90$(patsubst %,$(DIR_DL)/%,$(objects)) :
91 @$(LOAD)
92
93$(subst %,%_MD5,$(objects)) :
94 @$(MD5)
95
96###############################################################################
97# Installation Details
98###############################################################################
99
100$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
101 @$(PREBUILD)
102 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
cc24c14b 103
d2be7786
MT
104 # Compile main package.
105 cd $(DIR_APP) && make $(MAKE_OPTIONS) $(MAKETUNING) vdr include-dir
106
107 # Compile bundled plugins.
108 #cd $(DIR_APP) && for plugin in ...; do \
109 # make $(MAKETUNING) -C PLUGINS/src/$$plugin VDRDIR=$(DIR_APP) \
110 # CFLAGS="$(CFLAGS) -I$(DIR_APP)/include" \
111 # CXXFLAGS="$(CXXFLAGS) -I$(DIR_APP)/include" \
112 # PLGCFG=$(DIR_APP)/plugins.mk all || exit 1; \
113 #done
114
115 # Install main package.
116 cd $(DIR_APP) && make install-bin install-dirs install-includes $(MAKE_OPTIONS)
117 mv -v /usr/bin/vdr /usr/sbin/vdr
118
08434343 119 sed -e "s/VDR_PLUGIN_VERSION/$(VDRPLUGVER)/" \
d2be7786
MT
120 < $(DIR_SRC)/config/vdr/runvdr > /usr/sbin/runvdr
121 chmod 755 /usr/sbin/runvdr
122
123 # Install configuration.
124 mkdir -pv /etc/vdr
125 mkdir -pv /etc/sysconfig/vdr-plugins.d
90dc87b7
MT
126 cd $(DIR_APP) && install -m 644 $(DIR_SRC)/config/vdr/vdr.sysconfig \
127 /etc/sysconfig/vdr
d2be7786
MT
128 cd $(DIR_APP) && install -m 644 *.conf /etc/vdr
129
90dc87b7
MT
130 # Link development files.
131 mkdir -pv /usr/lib/vdr
132 cd $(DIR_APP) && cp -vf Make.global /usr/lib/vdr
133 ln -svf ../../include/vdr/config.h /usr/lib/vdr/config.h
134 ln -svf ../../include/vdr/device.h /usr/lib/vdr/device.h
135
f09be2a5
JS
136 #install initscripts
137 $(call INSTALL_INITSCRIPT,vdr)
138
d2be7786 139 # Install start links and backup include file.
0e07ae54
AF
140 ln -sf ../init.d/vdr /etc/rc.d/rc3.d/S60vdr
141 ln -sf ../init.d/vdr /etc/rc.d/rc0.d/K40vdr
142 ln -sf ../init.d/vdr /etc/rc.d/rc6.d/K40vdr
2a8c4fcb 143 install -v -m 644 $(DIR_SRC)/config/backup/includes/vdr \
d2be7786 144 /var/ipfire/backup/addons/includes/vdr
cc24c14b 145
debeaeaa
AF
146 @rm -rf $(DIR_APP)
147 @$(POSTBUILD)