]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/vdr_dvbapi
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / lfs / vdr_dvbapi
index adf60b39d59cfd2012771843901cc218c18bc041..d36f75d69f6f91e0233bdf27f445ac6e444c2b1c 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2020  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # 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,6 +24,8 @@
 
 include Config
 
+SUMMARY    = DVBAPI plugin for VDR
+
 VER        = 2.2.5
 
 THISAPP    = vdr-plugin-dvbapi-$(VER)
@@ -33,20 +35,20 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = vdr_dvbapi
-PAK_VER    = 5
+PAK_VER    = 7
 
 DEPS       =
 
-VDRPLUGVER = 2.4.7
+SERVICES   =
+
+VDRPLUGVER = 2.6.6
 
 EXTRA_FLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
 CFLAGS    += $(EXTRA_FLAGS)
 CXXFLAGS  += $(EXTRA_FLAGS)
 
 CSAFLAGS     =  -O3 -fexpensive-optimizations -funroll-loops
-CSAFLAGS-sse = $(CSAFLAGS) -mmmx -msse -msse2 -msse3
 PARALLEL     = PARALLEL_64_LONG
-PARALLEL-sse = PARALLEL_128_SSE2
 
 define BUILD
        cp -a $(DIR_APP) $(DIR_APP)-build$(1)
@@ -69,7 +71,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = cf35ed8a787c09676338ec16d231b61a
+$(DL_FILE)_BLAKE2 = dbab07bc7df8fdc7ec009b82723631a5e61cb1d4a9afdad16e32282a3e71d6bc87e7c78ec8cea73690606bda504c19bdd9123d1ca7a4e712b15ca884c77dabaa
 
 install : $(TARGET)
 
@@ -77,13 +79,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)) :
@@ -92,8 +94,8 @@ $(patsubst %,$(DIR_CHK)/%,$(objects)) :
 $(patsubst %,$(DIR_DL)/%,$(objects)) :
        @$(LOAD)
 
-$(subst %,%_MD5,$(objects)) :
-       @$(MD5)
+$(subst %,%_BLAKE2,$(objects)) :
+       @$(B2SUM)
 
 ###############################################################################
 # Installation Details
@@ -103,11 +105,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP)* && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
 
-ifeq "$(BUILD_ARCH)" "i586"
-       # Build an SSE enabled version.
-       $(call BUILD,-sse)
-endif
-
        # Build normal version.
        $(call BUILD)