]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/freeradius
lfs: Drop quotes in DEPS variable
[ipfire-2.x.git] / lfs / freeradius
index 498059a09e1ec21b3529ec613651a8d0edc8b4fb..3453d8e4d4ae49f8985682bfa287fa4a8ee21919 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2018  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2019  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,7 +24,7 @@
 
 include Config
 
-VER        = 3.0.14
+VER        = 3.0.19
 
 THISAPP    = freeradius-server-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -32,9 +32,13 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = freeradius
-PAK_VER    = 4
+PAK_VER    = 10
 
-DEPS       = "samba"
+DEPS       = samba
+
+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 = 3e4048353931eda01f03ef89039f0651
 
 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)