2008-11-19 04:52:33 +08:00
|
|
|
#
|
2012-01-06 23:18:30 +08:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-11 08:41:05 +08:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=openssl
|
2014-06-06 05:32:36 +08:00
|
|
|
PKG_VERSION:=1.0.1h
|
2014-03-09 21:23:41 +08:00
|
|
|
PKG_RELEASE:=1
|
2013-08-14 21:02:33 +08:00
|
|
|
PKG_USE_MIPS16:=0
|
2006-06-11 08:41:05 +08:00
|
|
|
|
2013-09-10 20:09:13 +08:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
|
2006-09-23 21:59:21 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-06-11 08:41:05 +08:00
|
|
|
PKG_SOURCE_URL:=http://www.openssl.org/source/ \
|
2013-02-14 21:00:03 +08:00
|
|
|
ftp://ftp.funet.fi/pub/crypt/mirrors/ftp.openssl.org/source \
|
2006-06-11 08:41:05 +08:00
|
|
|
ftp://ftp.sunet.se/pub/security/tools/net/openssl/source/
|
2014-06-06 05:32:36 +08:00
|
|
|
PKG_MD5SUM:=8d6d684a9430d5cc98a62a5d8fbda8cf
|
2006-06-11 08:41:05 +08:00
|
|
|
|
2012-10-19 23:34:28 +08:00
|
|
|
PKG_LICENSE:=SSLEAY OPENSSL
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
2010-03-14 09:47:55 +08:00
|
|
|
PKG_BUILD_DEPENDS:=ocf-crypto-headers
|
2013-07-24 20:37:55 +08:00
|
|
|
PKG_CONFIG_DEPENDS:=CONFIG_OPENSSL_ENGINE_CRYPTO CONFIG_OPENSSL_ENGINE_DIGEST \
|
2014-02-18 21:33:08 +08:00
|
|
|
CONFIG_OPENSSL_WITH_EC CONFIG_OPENSSL_WITH_EC2M
|
2008-11-19 04:52:33 +08:00
|
|
|
|
2006-06-21 10:32:39 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2006-06-11 08:41:05 +08:00
|
|
|
|
2006-09-23 21:59:21 +08:00
|
|
|
define Package/openssl/Default
|
|
|
|
TITLE:=Open source SSL toolkit
|
|
|
|
URL:=http://www.openssl.org/
|
|
|
|
endef
|
|
|
|
|
2010-01-29 03:28:06 +08:00
|
|
|
define Package/libopenssl/config
|
|
|
|
source "$(SOURCE)/Config.in"
|
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define Package/openssl/Default/description
|
2010-03-14 09:47:55 +08:00
|
|
|
The OpenSSL Project is a collaborative effort to develop a robust,
|
|
|
|
commercial-grade, full-featured, and Open Source toolkit implementing the Secure
|
|
|
|
Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well
|
|
|
|
as a full-strength general purpose cryptography library.
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
2006-06-19 01:46:02 +08:00
|
|
|
define Package/libopenssl
|
2007-09-07 16:34:51 +08:00
|
|
|
$(call Package/openssl/Default)
|
2006-09-23 21:59:21 +08:00
|
|
|
SECTION:=libs
|
2009-05-26 23:04:50 +08:00
|
|
|
SUBMENU:=SSL
|
2006-09-23 21:59:21 +08:00
|
|
|
CATEGORY:=Libraries
|
|
|
|
DEPENDS:=+zlib
|
|
|
|
TITLE+= (libraries)
|
2010-04-16 18:50:45 +08:00
|
|
|
MENU:=1
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libopenssl/description
|
|
|
|
$(call Package/openssl/Default/description)
|
2010-03-14 09:47:55 +08:00
|
|
|
This package contains the OpenSSL shared libraries, needed by other programs.
|
2006-06-19 01:46:02 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/openssl-util
|
2006-09-23 21:59:21 +08:00
|
|
|
$(call Package/openssl/Default)
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2012-08-29 18:08:30 +08:00
|
|
|
DEPENDS:=+libopenssl
|
2006-09-23 21:59:21 +08:00
|
|
|
TITLE+= (utility)
|
2006-06-19 01:46:02 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/openssl-util/conffiles
|
|
|
|
/etc/ssl/openssl.cnf
|
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define Package/openssl-util/description
|
|
|
|
$(call Package/openssl/Default/description)
|
2010-03-14 09:47:55 +08:00
|
|
|
This package contains the OpenSSL command-line utility.
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
2008-11-11 23:35:10 +08:00
|
|
|
OPENSSL_NO_CIPHERS:= no-idea no-md2 no-mdc2 no-rc5 no-sha0 no-smime \
|
2013-11-15 04:42:15 +08:00
|
|
|
no-aes192 no-camellia no-ans1 no-krb5
|
2013-12-14 18:19:48 +08:00
|
|
|
OPENSSL_OPTIONS:= shared no-err no-hw zlib-dynamic no-sse2
|
2010-01-29 03:28:06 +08:00
|
|
|
|
2012-07-12 07:38:16 +08:00
|
|
|
ifdef CONFIG_OPENSSL_ENGINE_CRYPTO
|
2011-02-04 02:45:35 +08:00
|
|
|
OPENSSL_OPTIONS += -DHAVE_CRYPTODEV
|
2012-07-12 07:38:16 +08:00
|
|
|
ifdef CONFIG_OPENSSL_ENGINE_DIGEST
|
|
|
|
OPENSSL_OPTIONS += -DUSE_CRYPTODEV_DIGESTS
|
|
|
|
endif
|
2008-07-12 23:42:00 +08:00
|
|
|
else
|
2010-01-29 03:28:06 +08:00
|
|
|
OPENSSL_OPTIONS += no-engines
|
2009-12-16 10:03:20 +08:00
|
|
|
endif
|
2010-01-29 03:28:06 +08:00
|
|
|
|
2013-07-24 20:37:55 +08:00
|
|
|
ifndef CONFIG_OPENSSL_WITH_EC
|
|
|
|
OPENSSL_OPTIONS += no-ec
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef CONFIG_OPENSSL_WITH_EC2M
|
|
|
|
OPENSSL_OPTIONS += no-ec2m
|
|
|
|
endif
|
|
|
|
|
2012-06-19 07:54:08 +08:00
|
|
|
ifeq ($(CONFIG_x86_64),y)
|
|
|
|
OPENSSL_TARGET:=linux-x86_64
|
2014-03-12 18:00:53 +08:00
|
|
|
OPENSSL_MAKEFLAGS += LIBDIR=lib
|
2012-06-19 07:54:08 +08:00
|
|
|
else
|
2012-09-24 23:23:57 +08:00
|
|
|
OPENSSL_OPTIONS+=no-sse2
|
|
|
|
ifeq ($(CONFIG_mips)$(CONFIG_mipsel),y)
|
|
|
|
OPENSSL_TARGET:=linux-mips-openwrt
|
|
|
|
else
|
|
|
|
OPENSSL_TARGET:=linux-generic-openwrt
|
|
|
|
OPENSSL_OPTIONS+=no-perlasm
|
|
|
|
endif
|
2012-06-19 07:54:08 +08:00
|
|
|
endif
|
2006-09-23 21:59:21 +08:00
|
|
|
|
2014-03-09 21:19:29 +08:00
|
|
|
STAMP_CONFIGURED := $(STAMP_CONFIGURED)_$(subst $(space),_,$(OPENSSL_OPTIONS))
|
|
|
|
|
2006-06-11 08:41:05 +08:00
|
|
|
define Build/Configure
|
2014-03-09 21:19:29 +08:00
|
|
|
[ -f $(STAMP_CONFIGURED) ] || { \
|
|
|
|
rm -f $(PKG_BUILD_DIR)/*.so.* $(PKG_BUILD_DIR)/*.a; \
|
|
|
|
find $(PKG_BUILD_DIR) -name \*.o | xargs rm -f; \
|
|
|
|
}
|
2006-06-11 08:41:05 +08:00
|
|
|
(cd $(PKG_BUILD_DIR); \
|
2012-06-19 07:54:08 +08:00
|
|
|
./Configure $(OPENSSL_TARGET) \
|
2006-09-23 21:59:21 +08:00
|
|
|
--prefix=/usr \
|
|
|
|
--openssldir=/etc/ssl \
|
2007-09-03 13:00:38 +08:00
|
|
|
$(TARGET_CPPFLAGS) \
|
|
|
|
$(TARGET_LDFLAGS) -ldl \
|
2006-09-23 21:59:21 +08:00
|
|
|
-DOPENSSL_SMALL_FOOTPRINT \
|
|
|
|
$(OPENSSL_NO_CIPHERS) \
|
|
|
|
$(OPENSSL_OPTIONS) \
|
2006-06-11 08:41:05 +08:00
|
|
|
)
|
2009-05-17 08:25:41 +08:00
|
|
|
# XXX: OpenSSL "make depend" will look for installed headers before its own,
|
|
|
|
# so remove installed stuff first
|
|
|
|
-$(SUBMAKE) -j1 clean-staging
|
2013-09-10 20:09:13 +08:00
|
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
2006-09-01 05:18:29 +08:00
|
|
|
MAKEDEPPROG="$(TARGET_CROSS)gcc" \
|
2006-09-30 01:28:27 +08:00
|
|
|
OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
|
2009-12-16 10:03:20 +08:00
|
|
|
$(OPENSSL_MAKEFLAGS) \
|
2006-06-11 08:41:05 +08:00
|
|
|
depend
|
2014-03-09 21:19:25 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
|
|
|
define Build/Compile
|
2013-09-10 20:09:13 +08:00
|
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
2010-03-14 09:47:55 +08:00
|
|
|
CC="$(TARGET_CC)" \
|
2013-04-05 20:36:09 +08:00
|
|
|
ASFLAGS="$(TARGET_ASFLAGS) -c" \
|
2010-03-14 09:47:55 +08:00
|
|
|
AR="$(TARGET_CROSS)ar r" \
|
|
|
|
RANLIB="$(TARGET_CROSS)ranlib" \
|
|
|
|
OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
$(OPENSSL_MAKEFLAGS) \
|
|
|
|
all
|
2013-09-10 20:09:13 +08:00
|
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
2006-06-11 08:41:05 +08:00
|
|
|
CC="$(TARGET_CC)" \
|
2013-04-05 20:36:09 +08:00
|
|
|
ASFLAGS="$(TARGET_ASFLAGS) -c" \
|
2006-06-11 08:41:05 +08:00
|
|
|
AR="$(TARGET_CROSS)ar r" \
|
|
|
|
RANLIB="$(TARGET_CROSS)ranlib" \
|
2006-09-30 01:28:27 +08:00
|
|
|
OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
|
2009-12-16 10:03:20 +08:00
|
|
|
$(OPENSSL_MAKEFLAGS) \
|
2010-03-14 09:47:55 +08:00
|
|
|
build-shared
|
2006-06-11 08:41:05 +08:00
|
|
|
# Work around openssl build bug to link libssl.so with libcrypto.so.
|
|
|
|
-rm $(PKG_BUILD_DIR)/libssl.so.*.*.*
|
2013-09-10 20:09:13 +08:00
|
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
2006-08-04 11:26:32 +08:00
|
|
|
CC="$(TARGET_CC)" \
|
2006-09-30 01:28:27 +08:00
|
|
|
OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
|
2009-12-16 10:03:20 +08:00
|
|
|
$(OPENSSL_MAKEFLAGS) \
|
2006-06-11 08:41:05 +08:00
|
|
|
do_linux-shared
|
2006-10-19 06:12:24 +08:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2012-03-19 03:46:01 +08:00
|
|
|
CC="$(TARGET_CC)" \
|
2006-06-11 08:41:05 +08:00
|
|
|
INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \
|
2009-12-16 10:03:20 +08:00
|
|
|
$(OPENSSL_MAKEFLAGS) \
|
2006-06-11 08:41:05 +08:00
|
|
|
install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2010-03-14 09:47:55 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
2007-09-28 09:45:11 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/openssl $(1)/usr/include/
|
2010-03-14 09:47:55 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
2007-09-28 09:45:11 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{crypto,ssl}.{a,so*} $(1)/usr/lib/
|
2010-03-14 09:47:55 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
2007-09-28 09:45:11 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc $(1)/usr/lib/pkgconfig/
|
2012-01-18 22:48:16 +08:00
|
|
|
[ -n "$(TARGET_LDFLAGS)" ] && $(SED) 's#$(TARGET_LDFLAGS)##g' $(1)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc || true
|
2006-06-11 08:41:05 +08:00
|
|
|
endef
|
2006-09-23 21:59:21 +08:00
|
|
|
|
2006-06-11 08:41:05 +08:00
|
|
|
define Package/libopenssl/install
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-06-30 04:48:58 +08:00
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libcrypto.so.* $(1)/usr/lib/
|
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libssl.so.* $(1)/usr/lib/
|
2006-06-11 08:41:05 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/openssl-util/install
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/ssl
|
2006-06-11 08:41:05 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/etc/ssl/openssl.cnf $(1)/etc/ssl/
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/ssl/certs
|
|
|
|
$(INSTALL_DIR) $(1)/etc/ssl/private
|
2006-06-11 08:41:05 +08:00
|
|
|
chmod 0700 $(1)/etc/ssl/private
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2007-12-10 02:53:06 +08:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/openssl $(1)/usr/bin/
|
2006-06-11 08:41:05 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libopenssl))
|
|
|
|
$(eval $(call BuildPackage,openssl-util))
|