X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Fvdr_epgsearch;h=353f81271fef52789ff3691c789cbd9279a92b4b;hb=HEAD;hp=e0065accbea64203a83d21b86a74b5b39e6b2d09;hpb=9376c3ae9251ae24813cac08c1885e3da730675d;p=people%2Fpmueller%2Fipfire-2.x.git diff --git a/lfs/vdr_epgsearch b/lfs/vdr_epgsearch index e0065accbe..dceea2cc87 100644 --- a/lfs/vdr_epgsearch +++ b/lfs/vdr_epgsearch @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2013 IPFire Team # +# Copyright (C) 2007-2024 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,25 +24,28 @@ include Config -VER = 1.0.1.beta5 -SUP_ARCHES = +SUMMARY = Searchtimer and replacement of the VDR program menu -THISAPP = vdr-epgsearch-$(VER) -DL_FILE = $(THISAPP).tgz +VER = 2.4.2 + +THISAPP = vdr-plugin-epgsearch-$(VER) +DL_FILE = $(THISAPP).tar.gz DL_FROM = $(URL_IPFIRE) -DIR_APP = $(DIR_SRC)/epgsearch-$(VER) +DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = vdr_epgsearch -PAK_VER = 7 +PAK_VER = 12 + +DEPS = -DEPS = "" +SERVICES = -VDRPLUGVER = 2.0.0 +VDRPLUGVER = 2.6.6 EXTRA_FLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE CFLAGS += $(EXTRA_FLAGS) -CXXFLAGS += $(EXTRA_FLAGS) +CXXFLAGS += $(EXTRA_FLAGS) -std=c++11 ############################################################################### # Top-level Rules @@ -52,7 +55,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 6e63cc29df02f48fabf6e12e1e71b2fc +$(DL_FILE)_BLAKE2 = 1e2ed02a2d8ac1ba1e2ffd72b7830c4bb9a3478cebce8affd871e7cac25ac7759f21908447d74652632541dca74cbeb8e4de9773550bad65d279770677b7e146 install : $(TARGET) @@ -60,13 +63,13 @@ check : $(patsubst %,$(DIR_CHK)/%,$(objects)) download : $(patsubst %,$(DIR_DL)/%,$(objects)) -md5 : $(subst %,%_MD5,$(objects)) +b2 : $(subst %,%_BLAKE2,$(objects)) -dist: +dist: @$(PAK) ############################################################################### -# Downloading, checking, md5sum +# Downloading, checking, b2sum ############################################################################### $(patsubst %,$(DIR_CHK)/%,$(objects)) : @@ -75,8 +78,8 @@ $(patsubst %,$(DIR_CHK)/%,$(objects)) : $(patsubst %,$(DIR_DL)/%,$(objects)) : @$(LOAD) -$(subst %,%_MD5,$(objects)) : - @$(MD5) +$(subst %,%_BLAKE2,$(objects)) : + @$(B2SUM) ############################################################################### # Installation Details @@ -85,7 +88,7 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && patch -p1 < $(DIR_SRC)/src/patches/vdr-epgsearch-1.0.1.beta3-paths.patch + cd $(DIR_APP) && patch -p1 < $(DIR_SRC)/src/patches/vdr-epgsearch-2.4.0-debian-paths.patch cd $(DIR_APP) && make $(MAKE_TUNING) LIBDIR=. VDRDIR=/usr/lib/vdr \ CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \