vdr-vnsiserver3: Change plugin.

This commit is contained in:
Michael Tremer
2013-03-24 22:47:17 +01:00
parent 60a4bfc125
commit cf068ec482
5 changed files with 19 additions and 13 deletions

View File

@@ -1,3 +1,4 @@
etc/sysconfig/vdr-plugins.d/vnsiserver3.conf
etc/vdr/plugins/vnsiserver
etc/vdr/plugins/vnsiserver/allowed_hosts.conf
usr/lib/vdr/libvdr-vnsiserver.so.1.7.41
usr/lib/vdr/libvdr-vnsiserver3.so.1.7.41

View File

@@ -1,5 +0,0 @@
# Configuration snippet for vdr-vnsiserver -*- sh -*-
#
# Add command line options to pass to the vnsiserver plugin to PLUGIN_OPTIONS.
PLUGIN_OPTIONS=""

View File

@@ -0,0 +1,5 @@
# Configuration snippet for vdr-vnsiserver3 -*- sh -*-
#
# Add command line options to pass to the vnsiserver3 plugin to PLUGIN_OPTIONS.
PLUGIN_OPTIONS=""

View File

@@ -16,7 +16,7 @@ VDR_OPTIONS=(--vfat)
VDR_PLUGIN_ORDER="
streamdev-server
epgsearch
vnsiserver
vnsiserver3
"
# PATH where to find the internally used executables.

View File

@@ -24,8 +24,8 @@
include Config
VER = 0.9.0
THISAPP = vdr-vnsiserver3
VER = cc03615
THISAPP = vdr-vnsiserver3-$(VER)
DL_FILE = $(THISAPP).tar.xz
DL_FROM = $(URL_IPFIRE)
@@ -38,6 +38,10 @@ DEPS = "vdr"
VDR_VER = 1.7.41
EXTRA_FLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
CFLAGS += $(EXTRA_FLAGS)
CXXFLAGS += $(EXTRA_FLAGS)
###############################################################################
# Top-level Rules
###############################################################################
@@ -46,7 +50,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 159a36577ea50d9772fcf5a92ffd38b5
$(DL_FILE)_MD5 = 5100b1cb1ee936f64b99a76c492fbc3f
install : $(TARGET)
@@ -81,13 +85,14 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && make $(MAKE_TUNING) LIBDIR=. VDRDIR=/usr/lib/vdr \
CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
LOCALEDIR=$$(pwd)/locale all
-mkdir -pv /etc/vdr/plugins/vnsiserver
cd $(DIR_APP) && install -m 755 libvdr-vnsiserver.so \
/usr/lib/vdr/libvdr-vnsiserver.so.$(VDR_VER)
cd $(DIR_APP) && install -m 755 libvdr-vnsiserver3.so \
/usr/lib/vdr/libvdr-vnsiserver3.so.$(VDR_VER)
cd $(DIR_APP) && install -m 644 vnsiserver/* /etc/vdr/plugins/vnsiserver
install -m 644 $(DIR_SRC)/config/vdr/plugins.d/vnsiserver.conf \
install -m 644 $(DIR_SRC)/config/vdr/plugins.d/vnsiserver3.conf \
/etc/sysconfig/vdr-plugins.d
@rm -rf $(DIR_APP)