1 ###############################################################################
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2015 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-generic32 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 = a06c547dac9044161a477211049f60ef
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.2a-rpmbuild.patch
86 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1m-weak-ciphers.patch
87 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-disable-sslv2-sslv3.patch
90 cd $(DIR_APP) && sed -i Configure \
91 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
93 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
94 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
96 cd $(DIR_APP) && ./Configure \
98 --openssldir=/etc/ssl \
99 --enginesdir=/usr/lib/openssl/engines \
114 cd $(DIR_APP) && make depend
115 cd $(DIR_APP) && make
117 # Install everything.
118 cd $(DIR_APP) && make install
119 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
122 -rm -vfr /etc/ssl/man
124 # Move engines to the right place.
125 -mkdir -pv /usr/lib/openssl
126 rm -vfr /usr/lib/openssl/engines
127 mv -v /usr/lib/engines /usr/lib/openssl