2 # Copyright (C) 2006-2009 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
14 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
15 PKG_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
/
19 PKG_MD5SUM
:=e555c6d58d276aec7fdc53363e338ab3
21 PKG_BUILD_DEPENDS
:=ocf-crypto-headers
23 include $(INCLUDE_DIR
)/package.mk
25 define Package
/openssl
/Default
26 TITLE
:=Open source SSL toolkit
27 URL
:=http
://www.openssl.org
/
30 define Package
/openssl
/Default
/description
31 The OpenSSL Project is a collaborative effort to develop a robust
,
32 commercial-grade
, full-featured
, and Open Source toolkit implementing the
33 Secure Sockets Layer
(SSL v2
/v3
) and Transport Layer Security
(TLS v1
)
34 protocols
as well
as a full-strength general purpose cryptography library.
37 define Package
/libopenssl
38 $(call Package
/openssl
/Default
)
45 define Package
/libopenssl
/description
46 $(call Package
/openssl
/Default
/description
)
47 This package contains the OpenSSL shared libraries
, needed by other
51 define Package
/openssl-util
52 $(call Package
/openssl
/Default
)
59 define Package
/openssl-util
/conffiles
63 define Package
/openssl-util
/description
64 $(call Package
/openssl
/Default
/description
)
65 This package contains the OpenSSL command-line utility.
69 OPENSSL_NO_CIPHERS
:= no-idea no-md2 no-mdc2 no-rc5 no-sha0 no-smime \
70 no-rmd160 no-aes192 no-ripemd no-camellia no-ans1 no-krb5
71 ifeq ($(BOARD
),ixp4xx
)
72 OPENSSL_OPTIONS
:= shared no-ec no-err no-hw no-threads zlib-dynamic \
73 no-sse2 no-perlasm
--with-cryptodev
75 OPENSSL_OPTIONS
:= shared no-ec no-err no-hw no-threads zlib-dynamic \
76 no-engines no-sse2 no-perlasm
80 define Build
/Configure
81 (cd
$(PKG_BUILD_DIR
); \
82 .
/Configure linux-openwrt \
84 --openssldir
=/etc
/ssl \
86 $(TARGET_LDFLAGS
) -ldl \
87 -DOPENSSL_SMALL_FOOTPRINT \
88 $(OPENSSL_NO_CIPHERS
) \
93 TARGET_CFLAGS
+= $(FPIC
)
96 rm -rf
$(PKG_INSTALL_DIR
)
97 mkdir
-p
$(PKG_INSTALL_DIR
)
98 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
99 MAKEDEPPROG
="$(TARGET_CROSS)gcc" \
100 OPENWRT_OPTIMIZATION_FLAGS
="$(TARGET_CFLAGS)" \
102 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
104 AR
="$(TARGET_CROSS)ar r" \
105 RANLIB
="$(TARGET_CROSS)ranlib" \
106 OPENWRT_OPTIMIZATION_FLAGS
="$(TARGET_CFLAGS)" \
108 # Work around openssl build bug to link libssl.so with libcrypto.so.
109 -rm $(PKG_BUILD_DIR
)/libssl.so.
*.
*.
*
110 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
112 OPENWRT_OPTIMIZATION_FLAGS
="$(TARGET_CFLAGS)" \
114 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
115 INSTALL_PREFIX
="$(PKG_INSTALL_DIR)" \
119 define Build
/InstallDev
120 mkdir
-p
$(1)/usr
/include
121 $(CP
) $(PKG_INSTALL_DIR
)/usr
/include/openssl
$(1)/usr
/include/
122 mkdir
-p
$(1)/usr
/lib
/
123 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/lib
{crypto
,ssl
}.
{a
,so
*} $(1)/usr
/lib
/
124 mkdir
-p
$(1)/usr
/lib
/pkgconfig
125 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/pkgconfig
/{openssl
,libcrypto
,libssl
}.
pc $(1)/usr
/lib
/pkgconfig
/
126 $(SED
) 's#$(TARGET_LDFLAGS)##g' $(1)/usr
/lib
/pkgconfig
/{openssl
,libcrypto
,libssl
}.
pc
129 define Package
/libopenssl
/install
130 $(INSTALL_DIR
) $(1)/usr
/lib
131 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/lib
{crypto
,ssl
}.so.
* $(1)/usr
/lib
/
132 chmod
0644 $(1)/usr
/lib
/*
135 define Package
/openssl-util
/install
136 $(INSTALL_DIR
) $(1)/etc
/ssl
137 $(CP
) $(PKG_INSTALL_DIR
)/etc
/ssl
/openssl.cnf
$(1)/etc
/ssl
/
138 $(INSTALL_DIR
) $(1)/etc
/ssl
/certs
139 $(INSTALL_DIR
) $(1)/etc
/ssl
/private
140 chmod
0700 $(1)/etc
/ssl
/private
141 $(INSTALL_DIR
) $(1)/usr
/bin
142 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/bin
/openssl
$(1)/usr
/bin
/
145 $(eval
$(call BuildPackage
,libopenssl
))
146 $(eval
$(call BuildPackage
,openssl-util
))