2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
15 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
16 PKG_SOURCE_URL
:=http
://www.openssl.org
/source
/ \
17 ftp
://ftp.funet.fi
/pub
/crypt
/cryptography
/libs
/openssl
/source
/ \
18 ftp
://ftp.webmonster.de
/pub
/openssl
/source
/ \
19 ftp
://ftp.sunet.se
/pub
/security
/tools
/net
/openssl
/source
/
20 PKG_MD5SUM
:=8ed1853538e1d05a1f5ada61ebf8bffa
23 PKG_BUILD_DIR
:=$(BUILD_DIR
)/$(PKG_NAME
)-$(PKG_VERSION
)
24 PKG_INSTALL_DIR
:=$(PKG_BUILD_DIR
)/ipkg-install
26 include $(INCLUDE_DIR
)/package.mk
28 define Package
/openssl
/Default
29 TITLE
:=Open source SSL toolkit
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.
35 URL
:=http
://www.openssl.org
/
38 define Package
/libopenssl
39 $(call Package
/openssl
/Default
)
46 This package contains the OpenSSL shared libraries
, needed by other
\\\
50 define Package
/openssl-util
51 $(call Package
/openssl
/Default
)
58 This package contains the OpenSSL command-line utility.
61 define Package
/openssl-util
/conffiles
65 OPENSSL_NO_CIPHERS
:= no-idea no-md2 no-mdc2 no-rc2 no-rc5 no-sha0 no-smime \
66 no-rmd160 no-aes192 no-ripemd no-camellia no-ans1 no-krb5
67 OPENSSL_OPTIONS
:= shared no-dso no-ec no-err no-fips no-hw no-threads zlib-dynamic \
68 no-engines no-sse2 no-perlasm
71 define Build
/Configure
72 (cd
$(PKG_BUILD_DIR
); \
73 .
/Configure linux-openwrt \
75 --openssldir
=/etc
/ssl \
76 -I
$(STAGING_DIR
)/usr
/include \
77 -L
$(STAGING_DIR
)/usr
/lib
-ldl \
78 -DOPENSSL_SMALL_FOOTPRINT \
79 $(OPENSSL_NO_CIPHERS
) \
85 rm -rf
$(PKG_INSTALL_DIR
)
86 mkdir
-p
$(PKG_INSTALL_DIR
)
87 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
88 MAKEDEPPROG
="$(TARGET_CROSS)gcc" \
89 OPENWRT_OPTIMIZATION_FLAGS
="$(TARGET_CFLAGS)" \
91 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
93 AR
="$(TARGET_CROSS)ar r" \
94 RANLIB
="$(TARGET_CROSS)ranlib" \
95 OPENWRT_OPTIMIZATION_FLAGS
="$(TARGET_CFLAGS)" \
97 # Work around openssl build bug to link libssl.so with libcrypto.so.
98 -rm $(PKG_BUILD_DIR
)/libssl.so.
*.
*.
*
99 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
101 OPENWRT_OPTIMIZATION_FLAGS
="$(TARGET_CFLAGS)" \
103 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
104 INSTALL_PREFIX
="$(PKG_INSTALL_DIR)" \
108 define Build
/InstallDev
109 mkdir
-p
$(STAGING_DIR
)/usr
/include
110 $(CP
) $(PKG_INSTALL_DIR
)/usr
/include/openssl
$(STAGING_DIR
)/usr
/include/
111 mkdir
-p
$(STAGING_DIR
)/usr
/lib
/
112 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/lib
{crypto
,ssl
}.
{a
,so
*} $(STAGING_DIR
)/usr
/lib
/
115 define Build
/UninstallDev
116 rm -rf
$(STAGING_DIR
)/usr
/include/openssl \
117 $(STAGING_DIR
)/usr
/lib
/lib
{crypto
,ssl
}.
{a
,so
*}
120 define Package
/libopenssl
/install
121 $(INSTALL_DIR
) $(1)/usr
/lib
122 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/lib
{crypto
,ssl
}.so.
* $(1)/usr
/lib
/
123 chmod
0644 $(1)/usr
/lib
/*
126 define Package
/openssl-util
/install
127 $(INSTALL_DIR
) $(1)/etc
/ssl
128 $(CP
) $(PKG_INSTALL_DIR
)/etc
/ssl
/openssl.cnf
$(1)/etc
/ssl
/
129 $(INSTALL_DIR
) $(1)/etc
/ssl
/certs
130 $(INSTALL_DIR
) $(1)/etc
/ssl
/private
131 chmod
0700 $(1)/etc
/ssl
/private
132 $(INSTALL_DIR
) $(1)/usr
/bin
133 $(CP
) $(PKG_INSTALL_DIR
)/usr
/bin
/openssl
$(1)/usr
/bin
/
136 $(eval
$(call BuildPackage
,libopenssl
))
137 $(eval
$(call BuildPackage
,openssl-util
))