]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/openssl
openssl: fix ssl2 rootfile handling.
[people/pmueller/ipfire-2.x.git] / lfs / openssl
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2015 IPFire Team <info@ipfire.org> #
5 # #
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. #
10 # #
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. #
15 # #
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/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 1.0.2a
28
29 THISAPP = openssl-$(VER)
30 DL_FILE = $(THISAPP).tar.gz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 TARGET = $(DIR_INFO)/$(THISAPP)$(KCFG)
35
36 CFLAGS += -DPURIFY
37 export RPM_OPT_FLAGS = $(CFLAGS)
38
39 CONFIGURE_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
55
56 ifeq "$(MACHINE)" "i586"
57 CONFIGURE_OPTIONS += linux-elf
58
59 ifneq "$(KCFG)" "-sse2"
60 CONFIGURE_OPTIONS += no-sse2
61 endif
62 endif
63
64 ifeq "$(MACHINE)" "armv5tel"
65 CONFIGURE_OPTIONS += linux-generic32
66 endif
67
68 ###############################################################################
69 # Top-level Rules
70 ###############################################################################
71
72 objects = $(DL_FILE)
73
74 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
75
76 $(DL_FILE)_MD5 = a06c547dac9044161a477211049f60ef
77
78 install : $(TARGET)
79
80 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
81
82 download :$(patsubst %,$(DIR_DL)/%,$(objects))
83
84 md5 : $(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)
106 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.0-beta5-enginesdir.patch
107 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.2a-rpmbuild.patch
108 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-1.0.1m-weak-ciphers.patch
109 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssl-disable-sslv2-sslv3.patch
110
111 # Apply our CFLAGS
112 cd $(DIR_APP) && sed -i Configure \
113 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
114
115 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
116 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
117
118 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS)
119
120 cd $(DIR_APP) && make depend
121 cd $(DIR_APP) && make
122
123 ifeq "$(KCFG)" "-sse2"
124 -mkdir -pv /usr/lib/sse2
125 cd $(DIR_APP) && install -m 755 \
126 libcrypto.so.10 libssl.so.10 /usr/lib/sse2
127 else
128 # Install everything.
129 cd $(DIR_APP) && make install
130 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
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
139 endif
140
141 @rm -rf $(DIR_APP)
142 @$(POSTBUILD)