]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/freeradius
langs: add changed strings to German and English translations
[people/pmueller/ipfire-2.x.git] / lfs / freeradius
index b232bc0309261f42beb687fccbb9f13893ba68a9..7f39ad8e17cc107160c98d7ff2e531cc4d9c92c4 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2017  IPFire Team  <info@ipfire.org>                          #
+# Copyright (C) 2007-2020  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        = 3.0.14
+VER        = 3.0.21
 
 THISAPP    = freeradius-server-$(VER)
-DL_FILE    = $(THISAPP).tar.gz
+DL_FILE    = $(THISAPP).tar.bz2
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = freeradius
-PAK_VER    = 3
+PAK_VER    = 12
 
-DEPS       = "samba"
+DEPS       = libtalloc
+
+ifeq "$(BUILD_ARCH)" "armv5tel"
+       LDFLAGS += -latomic
+endif
 
 ###############################################################################
 # Top-level Rules
@@ -44,7 +48,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 71f0593f68e6d4dd2efc47a61219643d
+$(DL_FILE)_MD5 = 8b7f794f2ac0d686d9aecfa083a63614
 
 install : $(TARGET)
 
@@ -77,6 +81,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 -Np1 < $(DIR_SRC)/src/patches/freeradius-no-buildtime-cert-gen.patch
        $(UPDATE_AUTOMAKE)
        cd $(DIR_APP) && \
                ./configure \
@@ -88,13 +93,15 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
                        --with-threads \
                        --with-thread-pool \
                        --disable-ltdl-install \
+                       --disable-openssl-version-check \
                        --without-rlm_eap_ikev2 \
                        --without-rlm_sql_iodbc \
                        --without-rlm_sql_firebird \
                        --without-rlm_sql_db2 \
                        --without-rlm_sql_oracle \
                        --without-rlm_sql_sqlite \
-                       --without-rlm_sql_mysql
+                       --without-rlm_sql_mysql \
+                       LDFLAGS="$(LDFLAGS)"
 
        cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
@@ -134,6 +141,11 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        install -v -m 644 $(DIR_SRC)/config/backup/includes/freeradius \
                /var/ipfire/backup/addons/includes/freeradius
 
+       # Logrotate
+       -mkdir -pv /etc/logrotate.d
+       install -v -m 644 $(DIR_SRC)/config/freeradius/logrotate \
+               /etc/logrotate.d/freeradius
+
        #install initscripts
        $(call INSTALL_INITSCRIPT,freeradius)