diff options
author | Yves-Alexis Perez <corsac@debian.org> | 2013-04-30 17:51:33 +0200 |
---|---|---|
committer | Yves-Alexis Perez <corsac@debian.org> | 2013-04-30 17:51:33 +0200 |
commit | c83921a2b566aa9d55d8ccc7258f04fca6292ee6 (patch) | |
tree | 44039788fc816c84d5788df847d1555413ebe55a /testing/scripts | |
parent | 10e5fb2b9b2f27c83b3e5a1d048b158d5cf42a43 (diff) | |
download | vyos-strongswan-c83921a2b566aa9d55d8ccc7258f04fca6292ee6.tar.gz vyos-strongswan-c83921a2b566aa9d55d8ccc7258f04fca6292ee6.zip |
Imported Upstream version 5.0.4
Diffstat (limited to 'testing/scripts')
-rwxr-xr-x | testing/scripts/build-baseimage | 2 | ||||
-rw-r--r-- | testing/scripts/recipes/009_xfrm-proxy.mk (renamed from testing/scripts/recipes/011_xfrm-proxy.mk) | 0 | ||||
-rw-r--r-- | testing/scripts/recipes/010_tkm.mk (renamed from testing/scripts/recipes/009_tkm.mk) | 0 | ||||
-rw-r--r-- | testing/scripts/recipes/011_openssl-fips.mk | 23 | ||||
-rw-r--r-- | testing/scripts/recipes/012_openssl.mk | 13 | ||||
-rw-r--r-- | testing/scripts/recipes/013_strongswan.mk (renamed from testing/scripts/recipes/010_strongswan.mk) | 1 |
6 files changed, 38 insertions, 1 deletions
diff --git a/testing/scripts/build-baseimage b/testing/scripts/build-baseimage index c426f0af5..354b48bd7 100755 --- a/testing/scripts/build-baseimage +++ b/testing/scripts/build-baseimage @@ -17,7 +17,7 @@ INC=$INC,openssl,vim,sqlite3,conntrack,gdb,cmake,libxerces-c2-dev,libltdl-dev INC=$INC,liblog4cxx10-dev,libboost-thread-dev,libboost-system-dev,git-core INC=$INC,less,acpid,acpi-support-base,libldns-dev,libunbound-dev,dnsutils,screen INC=$INC,gnat,gprbuild,libahven3-dev,libxmlada4.1-dev,libgmpada3-dev -INC=$INC,libalog0.4.1-base-dev,hostapd +INC=$INC,libalog0.4.1-base-dev,hostapd,libsoup2.4-dev SERVICES="apache2 dbus isc-dhcp-server slapd bind9" INC=$INC,${SERVICES// /,} diff --git a/testing/scripts/recipes/011_xfrm-proxy.mk b/testing/scripts/recipes/009_xfrm-proxy.mk index 569fbfe3c..569fbfe3c 100644 --- a/testing/scripts/recipes/011_xfrm-proxy.mk +++ b/testing/scripts/recipes/009_xfrm-proxy.mk diff --git a/testing/scripts/recipes/009_tkm.mk b/testing/scripts/recipes/010_tkm.mk index 971cd170f..971cd170f 100644 --- a/testing/scripts/recipes/009_tkm.mk +++ b/testing/scripts/recipes/010_tkm.mk diff --git a/testing/scripts/recipes/011_openssl-fips.mk b/testing/scripts/recipes/011_openssl-fips.mk new file mode 100644 index 000000000..5d28b181e --- /dev/null +++ b/testing/scripts/recipes/011_openssl-fips.mk @@ -0,0 +1,23 @@ +#!/usr/bin/make + +PV = 2.0.3 +PKG = openssl-fips-$(PV) +TAR = $(PKG).tar.gz +SRC = http://www.openssl.org/source/$(TAR) + +all: install + +$(TAR): + wget $(SRC) + +$(PKG): $(TAR) + tar xfz $(TAR) + +configure: $(PKG) + cd $(PKG) && ./config + +build: configure + cd $(PKG) && make + +install: build + cd $(PKG) && make install diff --git a/testing/scripts/recipes/012_openssl.mk b/testing/scripts/recipes/012_openssl.mk new file mode 100644 index 000000000..9312445ce --- /dev/null +++ b/testing/scripts/recipes/012_openssl.mk @@ -0,0 +1,13 @@ +#!/usr/bin/make + +PV = 1.0.1e +PKG = openssl-$(PV) +SRC = http://download.strongswan.org/testing/openssl-fips/ + +all: install + +$(PKG): + wget -r $(SRC) --no-directories --directory-prefix $(PKG) --accept deb + +install: $(PKG) + cd $(PKG) && dpkg -i *.deb diff --git a/testing/scripts/recipes/010_strongswan.mk b/testing/scripts/recipes/013_strongswan.mk index 94abb9ddb..14fdebbc9 100644 --- a/testing/scripts/recipes/010_strongswan.mk +++ b/testing/scripts/recipes/013_strongswan.mk @@ -12,6 +12,7 @@ CONFIG_OPTS = \ --with-random-device=/dev/urandom \ --disable-load-warning \ --enable-curl \ + --enable-soup \ --enable-ldap \ --enable-eap-aka \ --enable-eap-aka-3gpp2 \ |