Root/package/openssl/Makefile

1#
2# Copyright (C) 2006-2010 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=openssl
11PKG_VERSION:=0.9.8m
12PKG_RELEASE:=3
13
14PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15PKG_SOURCE_URL:=http://www.openssl.org/source/ \
16    ftp://ftp.funet.fi/pub/crypt/cryptography/libs/openssl/source/ \
17    ftp://ftp.webmonster.de/pub/openssl/source/ \
18    ftp://ftp.sunet.se/pub/security/tools/net/openssl/source/
19PKG_MD5SUM:=898bf125370926d5f692a2201124f8ec
20
21PKG_BUILD_DEPENDS:=ocf-crypto-headers
22PKG_CONFIG_DEPENDS:=CONFIG_OPENSSL_ENGINE
23
24include $(INCLUDE_DIR)/package.mk
25
26define Package/openssl/Default
27  TITLE:=Open source SSL toolkit
28  URL:=http://www.openssl.org/
29endef
30
31define Package/libopenssl/config
32source "$(SOURCE)/Config.in"
33endef
34
35define Package/openssl/Default/description
36The OpenSSL Project is a collaborative effort to develop a robust,
37commercial-grade, full-featured, and Open Source toolkit implementing the Secure
38Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well
39as a full-strength general purpose cryptography library.
40endef
41
42define Package/libopenssl
43$(call Package/openssl/Default)
44  SECTION:=libs
45  SUBMENU:=SSL
46  CATEGORY:=Libraries
47  DEPENDS:=+zlib
48  TITLE+= (libraries)
49  MENU:=1
50endef
51
52define Package/libopenssl/description
53$(call Package/openssl/Default/description)
54This package contains the OpenSSL shared libraries, needed by other programs.
55endef
56
57define Package/openssl-util
58  $(call Package/openssl/Default)
59  SECTION:=utils
60  CATEGORY:=Utilities
61  DEPENDS:=+libopenssl
62  TITLE+= (utility)
63endef
64
65define Package/openssl-util/conffiles
66/etc/ssl/openssl.cnf
67endef
68
69define Package/openssl-util/description
70$(call Package/openssl/Default/description)
71This package contains the OpenSSL command-line utility.
72endef
73
74
75OPENSSL_NO_CIPHERS:= no-idea no-md2 no-mdc2 no-rc5 no-sha0 no-smime \
76                    no-rmd160 no-aes192 no-ripemd no-camellia no-ans1 no-krb5
77OPENSSL_OPTIONS:= shared no-ec no-err no-hw no-threads zlib-dynamic no-sse2
78
79ifdef CONFIG_OPENSSL_ENGINE
80  OPENSSL_OPTIONS += --with-cryptodev
81else
82  OPENSSL_OPTIONS += no-engines
83endif
84
85OPENSSL_OPTIONS += no-perlasm
86
87define Build/Configure
88    (cd $(PKG_BUILD_DIR); \
89        ./Configure linux-openwrt \
90            --prefix=/usr \
91            --openssldir=/etc/ssl \
92            $(TARGET_CPPFLAGS) \
93            $(TARGET_LDFLAGS) -ldl \
94            -DOPENSSL_SMALL_FOOTPRINT \
95            $(OPENSSL_NO_CIPHERS) \
96            $(OPENSSL_OPTIONS) \
97    )
98endef
99
100TARGET_CFLAGS += $(FPIC)
101
102define Build/Compile
103    # XXX: OpenSSL "make depend" will look for installed headers before its own,
104    # so remove installed stuff first
105    -$(SUBMAKE) -j1 clean-staging
106    $(MAKE) -C $(PKG_BUILD_DIR) \
107        MAKEDEPPROG="$(TARGET_CROSS)gcc" \
108        OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
109        $(OPENSSL_MAKEFLAGS) \
110        depend
111    $(_SINGLE)$(MAKE) -C $(PKG_BUILD_DIR) \
112        CC="$(TARGET_CC)" \
113        AR="$(TARGET_CROSS)ar r" \
114        RANLIB="$(TARGET_CROSS)ranlib" \
115        OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
116        $(OPENSSL_MAKEFLAGS) \
117        all
118    $(MAKE) -C $(PKG_BUILD_DIR) \
119        CC="$(TARGET_CC)" \
120        AR="$(TARGET_CROSS)ar r" \
121        RANLIB="$(TARGET_CROSS)ranlib" \
122        OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
123        $(OPENSSL_MAKEFLAGS) \
124        build-shared
125    # Work around openssl build bug to link libssl.so with libcrypto.so.
126    -rm $(PKG_BUILD_DIR)/libssl.so.*.*.*
127    $(MAKE) -C $(PKG_BUILD_DIR) \
128        CC="$(TARGET_CC)" \
129        OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
130        $(OPENSSL_MAKEFLAGS) \
131        do_linux-shared
132    $(MAKE) -C $(PKG_BUILD_DIR) \
133        INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \
134        $(OPENSSL_MAKEFLAGS) \
135        install
136endef
137
138define Build/InstallDev
139    $(INSTALL_DIR) $(1)/usr/include
140    $(CP) $(PKG_INSTALL_DIR)/usr/include/openssl $(1)/usr/include/
141    $(INSTALL_DIR) $(1)/usr/lib/
142    $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{crypto,ssl}.{a,so*} $(1)/usr/lib/
143    $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
144    $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc $(1)/usr/lib/pkgconfig/
145    $(SED) 's#$(TARGET_LDFLAGS)##g' $(1)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc
146endef
147
148define Package/libopenssl/install
149    $(INSTALL_DIR) $(1)/usr/lib
150    $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libcrypto.so.* $(1)/usr/lib/
151    $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libssl.so.* $(1)/usr/lib/
152endef
153
154define Package/openssl-util/install
155    $(INSTALL_DIR) $(1)/etc/ssl
156    $(CP) $(PKG_INSTALL_DIR)/etc/ssl/openssl.cnf $(1)/etc/ssl/
157    $(INSTALL_DIR) $(1)/etc/ssl/certs
158    $(INSTALL_DIR) $(1)/etc/ssl/private
159    chmod 0700 $(1)/etc/ssl/private
160    $(INSTALL_DIR) $(1)/usr/bin
161    $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/openssl $(1)/usr/bin/
162endef
163
164$(eval $(call BuildPackage,libopenssl))
165$(eval $(call BuildPackage,openssl-util))
166

Archive Download this file



interactive