]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/openssl
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next
[ipfire-2.x.git] / lfs / openssl
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
2805275e 4# Copyright (C) 2007-2015 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
cd1a2927 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
cd1a2927
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
cd1a2927
MT
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. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
cd1a2927 18# #
cd1a2927
MT
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
2805275e 27VER = 1.0.2a
cd1a2927
MT
28
29THISAPP = openssl-$(VER)
30DL_FILE = $(THISAPP).tar.gz
50f96334 31DL_FROM = $(URL_IPFIRE)
cd1a2927 32DIR_APP = $(DIR_SRC)/$(THISAPP)
37de68c9 33
f3c79385 34TARGET = $(DIR_INFO)/$(THISAPP)$(KCFG)
37de68c9
MT
35
36CFLAGS += -DPURIFY
37export RPM_OPT_FLAGS = $(CFLAGS)
38
39CONFIGURE_OPTIONS = \
40 --prefix=/usr \
41 --openssldir=/etc/ssl \
42 --enginesdir=/usr/lib/openssl/engines \
43 shared \
44 zlib-dynamic \
45 enable-camellia \
46 enable-md2 \
47 enable-seed \
48 enable-tlsext \
49 enable-rfc3779 \
50 no-idea \
51 no-mdc2 \
52 no-rc5 \
53 no-srp \
54 -DSSL_FORBID_ENULL
cd1a2927 55
0f90adc0 56ifeq "$(MACHINE)" "i586"
37de68c9
MT
57 CONFIGURE_OPTIONS += linux-elf
58
f3c79385 59ifneq "$(KCFG)" "-sse2"
37de68c9
MT
60 CONFIGURE_OPTIONS += no-sse2
61endif
0f90adc0
EK
62endif
63
64ifeq "$(MACHINE)" "armv5tel"
432bc116 65 CONFIGURE_OPTIONS += linux-generic32
0f90adc0
EK
66endif
67
cd1a2927
MT
68###############################################################################
69# Top-level Rules
70###############################################################################
71
72objects = $(DL_FILE)
73
74$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
75
2805275e 76$(DL_FILE)_MD5 = a06c547dac9044161a477211049f60ef
cd1a2927
MT
77
78install : $(TARGET)
79
80check : $(patsubst %,$(DIR_CHK)/%,$(objects))
81
82download :$(patsubst %,$(DIR_DL)/%,$(objects))
83
84md5 : $(subst %,%_MD5,$(objects))
85
86###############################################################################
87# Downloading, checking, md5sum
88###############################################################################
89
90$(patsubst %,$(DIR_CHK)/%,$(objects)) :
91 @$(CHECK)
92
93$(patsubst %,$(DIR_DL)/%,$(objects)) :
94 @$(LOAD)
95
96$(subst %,%_MD5,$(objects)) :
97 @$(MD5)
98
99###############################################################################
100# Installation Details
101###############################################################################
102
103$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
104 @$(PREBUILD)
105 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
0f90adc0 106 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.0-beta5-enginesdir.patch
1245aa72 107 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2a-rpmbuild.patch
a0297133 108 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1m-weak-ciphers.patch
d0bd5afe 109 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-disable-sslv2-sslv3.patch
0f90adc0 110
a0297133
MT
111 # Apply our CFLAGS
112 cd $(DIR_APP) && sed -i Configure \
113 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
114
0f90adc0
EK
115 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
116 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
117
37de68c9 118 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS)
0f90adc0
EK
119
120 cd $(DIR_APP) && make depend
121 cd $(DIR_APP) && make
122
f3c79385 123ifeq "$(KCFG)" "-sse2"
37de68c9
MT
124 -mkdir -pv /usr/lib/sse2
125 cd $(DIR_APP) && install -m 755 \
126 libcrypto.so.10 libssl.so.10 /usr/lib/sse2
127else
0f90adc0
EK
128 # Install everything.
129 cd $(DIR_APP) && make install
cd1a2927 130 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
0f90adc0
EK
131
132 # Remove man pages.
133 -rm -vfr /etc/ssl/man
134
135 # Move engines to the right place.
136 -mkdir -pv /usr/lib/openssl
137 rm -vfr /usr/lib/openssl/engines
138 mv -v /usr/lib/engines /usr/lib/openssl
37de68c9 139endif
0f90adc0 140
cd1a2927
MT
141 @rm -rf $(DIR_APP)
142 @$(POSTBUILD)