X-Git-Url: http://git.ipfire.org/?p=people%2Fteissler%2Fipfire-2.x.git;a=blobdiff_plain;f=lfs%2Fstrongswan;h=ba492106eca9df95431c6411a34b8c2af6e7d86d;hp=39459c878fe8e3f031deee1af00e4ba59d9ac225;hb=d1b0815ff7a5bf14cd65a6f9d61edb4916d288dc;hpb=360378014d0ba62c1ced4b204080f05c2a3de575 diff --git a/lfs/strongswan b/lfs/strongswan index 39459c878..ba492106e 100644 --- a/lfs/strongswan +++ b/lfs/strongswan @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2011 IPFire Team # +# Copyright (C) 2007-2013 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,18 +24,20 @@ include Config -VER = 5.0.1 +VER = 5.1.3 THISAPP = strongswan-$(VER) DL_FILE = $(THISAPP).tar.bz2 DL_FROM = $(URL_IPFIRE) -DIR_APP = $(DIR_SRC)/$(THISAPP) +DIR_APP = $(DIR_SRC)/strongswan-$(VER) TARGET = $(DIR_INFO)/$(THISAPP) ifeq "$(MACHINE)" "i586" - PADLOCK = --enable-padlock + CONFIGURE_OPTIONS = \ + --enable-padlock else - PADLOCK = --disable-padlock + CONFIGURE_OPTIONS = \ + --disable-padlock endif ############################################################################### @@ -46,7 +48,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 58fdeb49f133139a58f4d8adafc69a16 +$(DL_FILE)_MD5 = 1d1c108775242743cd8699215b2918c3 install : $(TARGET) @@ -75,17 +77,27 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) - - cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/strongswan-4.5.3_ipfire.patch + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) + cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/strongswan-5.0.2_ipfire.patch + cd $(DIR_APP) && [ -x "configure" ] || ./autogen.sh cd $(DIR_APP) && ./configure \ --prefix="/usr" \ --sysconfdir="/etc" \ --enable-curl \ + --enable-dhcp \ + --enable-farp \ --enable-openssl \ + --enable-xauth-eap \ + --enable-xauth-noauth \ --enable-eap-radius \ - $(PADLOCK) + --enable-eap-tls \ + --enable-eap-ttls \ + --enable-eap-peap \ + --enable-eap-mschapv2 \ + --enable-eap-identity \ + --enable-unity \ + $(CONFIGURE_OPTIONS) cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install @@ -104,5 +116,5 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) ln -sf $(CONFIG_ROOT)/certs /etc/ipsec.d/certs ln -sf $(CONFIG_ROOT)/crls /etc/ipsec.d/crls - #@rm -rf $(DIR_APP) + @rm -rf $(DIR_APP) @$(POSTBUILD)