2008-11-18 22:52:33 +02:00
|
|
|
#
|
2012-01-06 17:18:30 +02:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-11 03:41:05 +03:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=openssl
|
2012-05-20 00:00:14 +03:00
|
|
|
PKG_VERSION:=1.0.1c
|
2010-05-05 23:32:10 +03:00
|
|
|
PKG_RELEASE:=1
|
2006-06-11 03:41:05 +03:00
|
|
|
|
2006-09-23 16:59:21 +03:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-06-11 03:41:05 +03:00
|
|
|
PKG_SOURCE_URL:=http://www.openssl.org/source/ \
|
|
|
|
ftp://ftp.funet.fi/pub/crypt/cryptography/libs/openssl/source/ \
|
|
|
|
ftp://ftp.webmonster.de/pub/openssl/source/ \
|
|
|
|
ftp://ftp.sunet.se/pub/security/tools/net/openssl/source/
|
2012-05-20 00:00:14 +03:00
|
|
|
PKG_MD5SUM:=ae412727c8c15b67880aef7bd2999b2e
|
2006-06-11 03:41:05 +03:00
|
|
|
|
2010-03-14 03:47:55 +02:00
|
|
|
PKG_BUILD_DEPENDS:=ocf-crypto-headers
|
|
|
|
PKG_CONFIG_DEPENDS:=CONFIG_OPENSSL_ENGINE
|
2008-11-18 22:52:33 +02:00
|
|
|
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2006-06-11 03:41:05 +03:00
|
|
|
|
2006-09-23 16:59:21 +03:00
|
|
|
define Package/openssl/Default
|
|
|
|
TITLE:=Open source SSL toolkit
|
|
|
|
URL:=http://www.openssl.org/
|
|
|
|
endef
|
|
|
|
|
2010-01-28 21:28:06 +02:00
|
|
|
define Package/libopenssl/config
|
|
|
|
source "$(SOURCE)/Config.in"
|
|
|
|
endef
|
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define Package/openssl/Default/description
|
2010-03-14 03:47:55 +02: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 11:34:51 +03:00
|
|
|
endef
|
|
|
|
|
2006-06-18 20:46:02 +03:00
|
|
|
define Package/libopenssl
|
2007-09-07 11:34:51 +03:00
|
|
|
$(call Package/openssl/Default)
|
2006-09-23 16:59:21 +03:00
|
|
|
SECTION:=libs
|
2009-05-26 18:04:50 +03:00
|
|
|
SUBMENU:=SSL
|
2006-09-23 16:59:21 +03:00
|
|
|
CATEGORY:=Libraries
|
|
|
|
DEPENDS:=+zlib
|
|
|
|
TITLE+= (libraries)
|
2010-04-16 13:50:45 +03:00
|
|
|
MENU:=1
|
2007-09-07 11:34:51 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libopenssl/description
|
|
|
|
$(call Package/openssl/Default/description)
|
2010-03-14 03:47:55 +02:00
|
|
|
This package contains the OpenSSL shared libraries, needed by other programs.
|
2006-06-18 20:46:02 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/openssl-util
|
2006-09-23 16:59:21 +03:00
|
|
|
$(call Package/openssl/Default)
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=+libopenssl
|
|
|
|
TITLE+= (utility)
|
2006-06-18 20:46:02 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/openssl-util/conffiles
|
|
|
|
/etc/ssl/openssl.cnf
|
|
|
|
endef
|
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define Package/openssl-util/description
|
|
|
|
$(call Package/openssl/Default/description)
|
2010-03-14 03:47:55 +02:00
|
|
|
This package contains the OpenSSL command-line utility.
|
2007-09-07 11:34:51 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
2008-11-11 17:35:10 +02:00
|
|
|
OPENSSL_NO_CIPHERS:= no-idea no-md2 no-mdc2 no-rc5 no-sha0 no-smime \
|
2006-11-29 04:53:50 +02:00
|
|
|
no-rmd160 no-aes192 no-ripemd no-camellia no-ans1 no-krb5
|
2010-01-28 21:28:06 +02:00
|
|
|
OPENSSL_OPTIONS:= shared no-ec no-err no-hw no-threads zlib-dynamic no-sse2
|
|
|
|
|
|
|
|
ifdef CONFIG_OPENSSL_ENGINE
|
2011-02-03 20:45:35 +02:00
|
|
|
OPENSSL_OPTIONS += -DHAVE_CRYPTODEV
|
2008-07-12 18:42:00 +03:00
|
|
|
else
|
2010-01-28 21:28:06 +02:00
|
|
|
OPENSSL_OPTIONS += no-engines
|
2009-12-16 04:03:20 +02:00
|
|
|
endif
|
2010-01-28 21:28:06 +02:00
|
|
|
|
2012-06-19 02:54:08 +03:00
|
|
|
ifeq ($(CONFIG_x86_64),y)
|
|
|
|
OPENSSL_TARGET:=linux-x86_64
|
|
|
|
else
|
|
|
|
OPENSSL_TARGET:=linux-openwrt
|
|
|
|
OPENSSL_OPTIONS+=no-perlasm no-sse2
|
|
|
|
endif
|
2006-09-23 16:59:21 +03:00
|
|
|
|
2006-06-11 03:41:05 +03:00
|
|
|
define Build/Configure
|
|
|
|
(cd $(PKG_BUILD_DIR); \
|
2012-06-19 02:54:08 +03:00
|
|
|
./Configure $(OPENSSL_TARGET) \
|
2006-09-23 16:59:21 +03:00
|
|
|
--prefix=/usr \
|
|
|
|
--openssldir=/etc/ssl \
|
2007-09-03 08:00:38 +03:00
|
|
|
$(TARGET_CPPFLAGS) \
|
|
|
|
$(TARGET_LDFLAGS) -ldl \
|
2006-09-23 16:59:21 +03:00
|
|
|
-DOPENSSL_SMALL_FOOTPRINT \
|
|
|
|
$(OPENSSL_NO_CIPHERS) \
|
|
|
|
$(OPENSSL_OPTIONS) \
|
2006-06-11 03:41:05 +03:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2008-08-07 01:10:29 +03:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
2006-06-11 03:41:05 +03:00
|
|
|
define Build/Compile
|
2009-05-17 03:25:41 +03:00
|
|
|
# XXX: OpenSSL "make depend" will look for installed headers before its own,
|
|
|
|
# so remove installed stuff first
|
|
|
|
-$(SUBMAKE) -j1 clean-staging
|
2006-10-19 01:12:24 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2006-09-01 00:18:29 +03:00
|
|
|
MAKEDEPPROG="$(TARGET_CROSS)gcc" \
|
2006-09-29 20:28:27 +03:00
|
|
|
OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
|
2009-12-16 04:03:20 +02:00
|
|
|
$(OPENSSL_MAKEFLAGS) \
|
2006-06-11 03:41:05 +03:00
|
|
|
depend
|
2010-03-14 03:47:55 +02:00
|
|
|
$(_SINGLE)$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
AR="$(TARGET_CROSS)ar r" \
|
|
|
|
RANLIB="$(TARGET_CROSS)ranlib" \
|
|
|
|
OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
$(OPENSSL_MAKEFLAGS) \
|
|
|
|
all
|
2006-10-19 01:12:24 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2006-06-11 03:41:05 +03:00
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
AR="$(TARGET_CROSS)ar r" \
|
|
|
|
RANLIB="$(TARGET_CROSS)ranlib" \
|
2006-09-29 20:28:27 +03:00
|
|
|
OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
|
2009-12-16 04:03:20 +02:00
|
|
|
$(OPENSSL_MAKEFLAGS) \
|
2010-03-14 03:47:55 +02:00
|
|
|
build-shared
|
2006-06-11 03:41:05 +03:00
|
|
|
# Work around openssl build bug to link libssl.so with libcrypto.so.
|
|
|
|
-rm $(PKG_BUILD_DIR)/libssl.so.*.*.*
|
2006-10-19 01:12:24 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2006-08-04 06:26:32 +03:00
|
|
|
CC="$(TARGET_CC)" \
|
2006-09-29 20:28:27 +03:00
|
|
|
OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \
|
2009-12-16 04:03:20 +02:00
|
|
|
$(OPENSSL_MAKEFLAGS) \
|
2006-06-11 03:41:05 +03:00
|
|
|
do_linux-shared
|
2006-10-19 01:12:24 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2012-03-18 21:46:01 +02:00
|
|
|
CC="$(TARGET_CC)" \
|
2006-06-11 03:41:05 +03:00
|
|
|
INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \
|
2009-12-16 04:03:20 +02:00
|
|
|
$(OPENSSL_MAKEFLAGS) \
|
2006-06-11 03:41:05 +03:00
|
|
|
install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2010-03-14 03:47:55 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
2007-09-28 04:45:11 +03:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/openssl $(1)/usr/include/
|
2010-03-14 03:47:55 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
2007-09-28 04:45:11 +03:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{crypto,ssl}.{a,so*} $(1)/usr/lib/
|
2010-03-14 03:47:55 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
2007-09-28 04:45:11 +03:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc $(1)/usr/lib/pkgconfig/
|
2012-01-18 16:48:16 +02:00
|
|
|
[ -n "$(TARGET_LDFLAGS)" ] && $(SED) 's#$(TARGET_LDFLAGS)##g' $(1)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc || true
|
2006-06-11 03:41:05 +03:00
|
|
|
endef
|
2006-09-23 16:59:21 +03:00
|
|
|
|
2006-06-11 03:41:05 +03:00
|
|
|
define Package/libopenssl/install
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-06-29 23:48:58 +03: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 03:41:05 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/openssl-util/install
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/etc/ssl
|
2006-06-11 03:41:05 +03:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/etc/ssl/openssl.cnf $(1)/etc/ssl/
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/etc/ssl/certs
|
|
|
|
$(INSTALL_DIR) $(1)/etc/ssl/private
|
2006-06-11 03:41:05 +03:00
|
|
|
chmod 0700 $(1)/etc/ssl/private
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2007-12-09 20:53:06 +02:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/openssl $(1)/usr/bin/
|
2006-06-11 03:41:05 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libopenssl))
|
|
|
|
$(eval $(call BuildPackage,openssl-util))
|