]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/dnsdist
Revert "ncat: Update to 7.91"
[people/pmueller/ipfire-2.x.git] / lfs / dnsdist
index 62c17cf9fba7045380b564aa4a0f813d38f92924..b93a4fc36b0713dca285ebb86b7e72dce7a69dc7 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2015  IPFire Team  <info@ipfire.org>                          #
+# Copyright (C) 2007-2018  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        #
 
 include Config
 
-VER        = 0.0.498gac688af
+VER        = 1.6.0
 
 THISAPP    = dnsdist-$(VER)
 DL_FILE    = $(THISAPP).tar.bz2
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
-SUP_ARCH   = x86_64 i586
+SUP_ARCH   = x86_64
 PROG       = dnsdist
-PAK_VER    = 1
+PAK_VER    = 9
 
-DEPS       = ""
+DEPS       =
+
+MAX_PARALLELISM = $(shell echo $$(( $(SYSTEM_MEMORY) / 2048)))
 
 ###############################################################################
 # Top-level Rules
@@ -45,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = b1bc53b3a35aef7006b74086919847bf
+$(DL_FILE)_MD5 = c15a95b19c6d9f39d89dae6995173ab3
 
 install : $(TARGET)
 
@@ -78,9 +80,24 @@ $(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) && ./configure --prefix=/usr --sysconfdir=/etc
+       cd $(DIR_APP) && ./configure \
+               --prefix=/usr \
+               --sysconfdir=/etc \
+               --enable-openssl \
+               --disable-gnutls \
+               --enable-dns-over-tls \
+               --with-lua \
+               --without-net-snmp
+
        cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
+
+       #install initscripts
+       $(call INSTALL_INITSCRIPT,dnsdist)
+
+       install -v -m 644 $(DIR_SRC)/config/backup/includes/dnsdist \
+                /var/ipfire/backup/addons/includes/dnsdist
+
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)