1 ###############################################################################
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2014 IPFire Team <info@ipfire.org> #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 ###############################################################################
21 ###############################################################################
23 ###############################################################################
29 THISAPP = openssl-$(VER)
30 DL_FILE = $(THISAPP).tar.gz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 TARGET = $(DIR_INFO)/$(THISAPP)
35 ifeq "$(MACHINE)" "i586"
36 CONFIGURE_ARGS = linux-elf no-asm 386
39 ifeq "$(MACHINE)" "armv5tel"
40 CONFIGURE_ARGS = linux-generic32
44 export RPM_OPT_FLAGS = $(CFLAGS)
46 ###############################################################################
48 ###############################################################################
52 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
54 $(DL_FILE)_MD5 = d4f002bd22a56881340105028842ae1f
58 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
60 download :$(patsubst %,$(DIR_DL)/%,$(objects))
62 md5 : $(subst %,%_MD5,$(objects))
64 ###############################################################################
65 # Downloading, checking, md5sum
66 ###############################################################################
68 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
71 $(patsubst %,$(DIR_DL)/%,$(objects)) :
74 $(subst %,%_MD5,$(objects)) :
77 ###############################################################################
78 # Installation Details
79 ###############################################################################
81 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
83 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
84 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.0-beta5-enginesdir.patch
85 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1-beta2-build.patch
86 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1e-cryptodev.patch
87 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1e-fix_parallel_build-1.patch
88 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1e-weak-ciphers.patch
90 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
91 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
93 cd $(DIR_APP) && ./Configure \
95 --openssldir=/etc/ssl \
96 --enginesdir=/usr/lib/openssl/engines \
113 -DUSE_CRYPTODEV_DIGEST
115 cd $(DIR_APP) && make depend
116 cd $(DIR_APP) && make
118 # Install everything.
119 cd $(DIR_APP) && make install
120 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
123 -rm -vfr /etc/ssl/man
125 # Move engines to the right place.
126 -mkdir -pv /usr/lib/openssl
127 rm -vfr /usr/lib/openssl/engines
128 mv -v /usr/lib/engines /usr/lib/openssl