]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/openssl
Core 90: Add changed css files.
[ipfire-2.x.git] / lfs / openssl
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
b1f11b04 4# Copyright (C) 2007-2014 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
9ffd1b35 27VER = 1.0.1m
cd1a2927
MT
28
29THISAPP = openssl-$(VER)
30DL_FILE = $(THISAPP).tar.gz
50f96334 31DL_FROM = $(URL_IPFIRE)
cd1a2927
MT
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
34
0f90adc0
EK
35ifeq "$(MACHINE)" "i586"
36 CONFIGURE_ARGS = linux-elf no-asm 386
37endif
38
39ifeq "$(MACHINE)" "armv5tel"
40 CONFIGURE_ARGS = linux-generic32
41endif
42
43CFLAGS += -DPURIFY
44export RPM_OPT_FLAGS = $(CFLAGS)
45
cd1a2927
MT
46###############################################################################
47# Top-level Rules
48###############################################################################
49
50objects = $(DL_FILE)
51
52$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
53
9ffd1b35 54$(DL_FILE)_MD5 = d143d1555d842a069cb7cc34ba745a06
cd1a2927
MT
55
56install : $(TARGET)
57
58check : $(patsubst %,$(DIR_CHK)/%,$(objects))
59
60download :$(patsubst %,$(DIR_DL)/%,$(objects))
61
62md5 : $(subst %,%_MD5,$(objects))
63
64###############################################################################
65# Downloading, checking, md5sum
66###############################################################################
67
68$(patsubst %,$(DIR_CHK)/%,$(objects)) :
69 @$(CHECK)
70
71$(patsubst %,$(DIR_DL)/%,$(objects)) :
72 @$(LOAD)
73
74$(subst %,%_MD5,$(objects)) :
75 @$(MD5)
76
77###############################################################################
78# Installation Details
79###############################################################################
80
81$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
82 @$(PREBUILD)
83 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
0f90adc0 84 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.0-beta5-enginesdir.patch
a0297133 85 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1e-rpmbuild.patch
a0297133 86 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1m-weak-ciphers.patch
d0bd5afe 87 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-disable-sslv2-sslv3.patch
0f90adc0 88
a0297133
MT
89 # Apply our CFLAGS
90 cd $(DIR_APP) && sed -i Configure \
91 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
92
0f90adc0
EK
93 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
94 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
95
96 cd $(DIR_APP) && ./Configure \
97 --prefix=/usr \
98 --openssldir=/etc/ssl \
99 --enginesdir=/usr/lib/openssl/engines \
100 shared \
101 zlib-dynamic \
102 enable-camellia \
103 enable-md2 \
104 enable-seed \
105 enable-tlsext \
106 enable-rfc3779 \
107 no-idea \
108 no-mdc2 \
109 no-rc5 \
110 no-srp \
111 $(CONFIGURE_ARGS) \
03d4ff60 112 -DSSL_FORBID_ENULL
0f90adc0
EK
113
114 cd $(DIR_APP) && make depend
115 cd $(DIR_APP) && make
116
117 # Install everything.
118 cd $(DIR_APP) && make install
cd1a2927 119 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
0f90adc0
EK
120
121 # Remove man pages.
122 -rm -vfr /etc/ssl/man
123
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
128
cd1a2927
MT
129 @rm -rf $(DIR_APP)
130 @$(POSTBUILD)