]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - lfs/vdr_vnsiserver3
lm_sensors: update to 3.3.4.
[people/teissler/ipfire-2.x.git] / lfs / vdr_vnsiserver3
CommitLineData
5e10e82f
SS
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
08434343 4# Copyright (C) 2007-2013 IPFire Team <info@ipfire.org> #
5e10e82f
SS
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
cf068ec4
MT
27VER = cc03615
28THISAPP = vdr-vnsiserver3-$(VER)
c435d7dc 29DL_FILE = $(THISAPP).tar.xz
5e10e82f 30
c435d7dc 31DL_FROM = $(URL_IPFIRE)
5e10e82f 32DIR_APP = $(DIR_SRC)/$(THISAPP)
c435d7dc 33TARGET = $(DIR_INFO)/$(THISAPP)
58ccbbd4 34PROG = vdr_vnsiserver3
25023ab9 35PAK_VER = 2
5e10e82f 36
25023ab9 37DEPS = ""
5e10e82f 38
08434343 39VDRPLUGVER = 2.0.0
c435d7dc 40
cf068ec4
MT
41EXTRA_FLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
42CFLAGS += $(EXTRA_FLAGS)
43CXXFLAGS += $(EXTRA_FLAGS)
44
5e10e82f
SS
45###############################################################################
46# Top-level Rules
47###############################################################################
48
c435d7dc
MT
49objects = $(DL_FILE)
50
51$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
5e10e82f 52
cf068ec4 53$(DL_FILE)_MD5 = 5100b1cb1ee936f64b99a76c492fbc3f
5e10e82f 54
c435d7dc 55install : $(TARGET)
5e10e82f 56
c435d7dc 57check : $(patsubst %,$(DIR_CHK)/%,$(objects))
5e10e82f 58
c435d7dc
MT
59download : $(patsubst %,$(DIR_DL)/%,$(objects))
60
61md5 : $(subst %,%_MD5,$(objects))
5e10e82f
SS
62
63dist:
c435d7dc
MT
64 @$(PAK)
65
66###############################################################################
67# Downloading, checking, md5sum
68###############################################################################
69
70$(patsubst %,$(DIR_CHK)/%,$(objects)) :
71 @$(CHECK)
72
73$(patsubst %,$(DIR_DL)/%,$(objects)) :
74 @$(LOAD)
75
76$(subst %,%_MD5,$(objects)) :
77 @$(MD5)
5e10e82f
SS
78
79###############################################################################
c435d7dc
MT
80# Installation Details
81###############################################################################
82
83$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
84 @$(PREBUILD)
85 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
86
87 cd $(DIR_APP) && make $(MAKE_TUNING) LIBDIR=. VDRDIR=/usr/lib/vdr \
cf068ec4 88 CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
c435d7dc
MT
89 LOCALEDIR=$$(pwd)/locale all
90
9b75c7cc 91 -mkdir -pv /etc/vdr/plugins/vnsiserver3
cf068ec4 92 cd $(DIR_APP) && install -m 755 libvdr-vnsiserver3.so \
08434343 93 /usr/lib/vdr/libvdr-vnsiserver3.so.$(VDRPLUGVER)
c99048fd 94 ln -svf ../../svdrphosts.conf /etc/vdr/plugins/vnsiserver3/allowed_hosts.conf
cf068ec4 95 install -m 644 $(DIR_SRC)/config/vdr/plugins.d/vnsiserver3.conf \
e16ed29c 96 /etc/sysconfig/vdr-plugins.d
c435d7dc
MT
97
98 @rm -rf $(DIR_APP)
99 @$(POSTBUILD)