]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/openssl
openssl: Update to 3.1.2
[people/pmueller/ipfire-2.x.git] / lfs / openssl
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2023 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 = 3.1.2
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 -Wa,--noexecstack
37
38 export RPM_OPT_FLAGS = $(CFLAGS)
39
40 CONFIGURE_OPTIONS = \
41 --prefix=/usr \
42 --openssldir=/etc/ssl \
43 shared \
44 zlib-dynamic \
45 enable-camellia \
46 enable-seed \
47 enable-rfc3779 \
48 no-idea \
49 no-mdc2 \
50 no-rc5 \
51 no-srp \
52 no-aria \
53 $(OPENSSL_ARCH)
54
55 OPENSSL_ARCH = linux-generic64
56
57 ifeq "$(BUILD_ARCH)" "aarch64"
58 OPENSSL_ARCH = linux-aarch64
59 endif
60
61 ifeq "$(BUILD_ARCH)" "x86_64"
62 OPENSSL_ARCH = linux-x86_64
63 endif
64
65 ###############################################################################
66 # Top-level Rules
67 ###############################################################################
68
69 objects = $(DL_FILE)
70
71 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
72
73 $(DL_FILE)_BLAKE2 = 7b4ba35df7d5680c5f13a1986e4c6abaf4592690647dcfa84d7f14c196326355e8ad0ea62f81f8269f0605f0d29f18e9def9c2158fcbe00baefabf819f82374d
74
75 install : $(TARGET)
76
77 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
78
79 download :$(patsubst %,$(DIR_DL)/%,$(objects))
80
81 b2 : $(subst %,%_BLAKE2,$(objects))
82
83 ###############################################################################
84 # Downloading, checking, b2sum
85 ###############################################################################
86
87 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
88 @$(CHECK)
89
90 $(patsubst %,$(DIR_DL)/%,$(objects)) :
91 @$(LOAD)
92
93 $(subst %,%_BLAKE2,$(objects)) :
94 @$(B2SUM)
95
96 ###############################################################################
97 # Installation Details
98 ###############################################################################
99
100 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
101 @$(PREBUILD)
102 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
103
104 # Apply our CFLAGS
105 cd $(DIR_APP) && sed -i Configure \
106 -e "s/-O3 -fomit-frame-pointer/$(CFLAGS)/g"
107
108 cd $(DIR_APP) && find crypto/ -name Makefile -exec \
109 sed 's/^ASFLAGS=/&-Wa,--noexecstack /' -i {} \;
110
111 cd $(DIR_APP) && ./Configure $(CONFIGURE_OPTIONS) \
112 $(CFLAGS) $(LDFLAGS)
113
114 cd $(DIR_APP) && make depend
115 cd $(DIR_APP) && make $(MAKETUNING)
116
117 # Install everything
118 cd $(DIR_APP) && make install
119 install -m 0644 $(DIR_SRC)/config/ssl/openssl.cnf /etc/ssl
120
121 # Install RFC 7919 defined standard group ffdhe4096
122 install -m 0644 $(DIR_SRC)/config/ssl/ffdhe4096.pem /etc/ssl
123
124 @rm -rf $(DIR_APP)
125 @$(POSTBUILD)