mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-27 16:21:06 +02:00
standardize Makefile, change section from base to libs and utils, add detailed descriptions
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4829 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
e43e63574b
commit
829866eaed
@ -11,55 +11,72 @@ include $(TOPDIR)/rules.mk
|
|||||||
PKG_NAME:=openssl
|
PKG_NAME:=openssl
|
||||||
PKG_VERSION:=0.9.8b
|
PKG_VERSION:=0.9.8b
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
PKG_MD5SUM:=12cedbeb6813a0d7919dbf1f82134b86
|
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=http://www.openssl.org/source/ \
|
PKG_SOURCE_URL:=http://www.openssl.org/source/ \
|
||||||
ftp://ftp.funet.fi/pub/crypt/cryptography/libs/openssl/source/ \
|
ftp://ftp.funet.fi/pub/crypt/cryptography/libs/openssl/source/ \
|
||||||
ftp://ftp.webmonster.de/pub/openssl/source/ \
|
ftp://ftp.webmonster.de/pub/openssl/source/ \
|
||||||
ftp://ftp.sunet.se/pub/security/tools/net/openssl/source/
|
ftp://ftp.sunet.se/pub/security/tools/net/openssl/source/
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_MD5SUM:=12cedbeb6813a0d7919dbf1f82134b86
|
||||||
PKG_CAT:=zcat
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
||||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
OPENSSL_NO_CIPHERS:= no-idea no-md2 no-mdc2 no-rc5 no-sha0 no-rmd160 no-aes192
|
|
||||||
OPENSSL_OPTIONS:= shared no-ec no-err no-fips no-hw no-krb5 no-threads zlib-dynamic no-engines
|
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/openssl/Default
|
||||||
|
TITLE:=Open source SSL toolkit
|
||||||
|
DESCRIPTION:=\
|
||||||
|
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.
|
||||||
|
URL:=http://www.openssl.org/
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/libopenssl
|
define Package/libopenssl
|
||||||
SECTION:=base
|
$(call Package/openssl/Default)
|
||||||
CATEGORY:=Libraries
|
SECTION:=libs
|
||||||
TITLE:=Open source SSL libraries
|
CATEGORY:=Libraries
|
||||||
DEPENDS:=+zlib
|
DEPENDS:=+zlib
|
||||||
DESCRIPTION:=Open source SSL (Secure Socket Layer) libraries
|
TITLE+= (libraries)
|
||||||
URL:=http://www.openssl.org/
|
DESCRIPTION+=\\\
|
||||||
|
\\\
|
||||||
|
This package contains the OpenSSL shared libraries, needed by other \\\
|
||||||
|
programs.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/openssl-util
|
define Package/openssl-util
|
||||||
$(call Package/libopenssl)
|
$(call Package/openssl/Default)
|
||||||
DEPENDS:=libopenssl
|
SECTION:=utils
|
||||||
TITLE:=OpenSSL command line utilities
|
CATEGORY:=Utilities
|
||||||
DESCRIPTION:=OpenSSL command line utilities
|
DEPENDS:=+libopenssl
|
||||||
|
TITLE+= (utility)
|
||||||
|
DESCRIPTION+=\\\
|
||||||
|
\\\
|
||||||
|
This package contains the OpenSSL command-line utility.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/openssl-util/conffiles
|
define Package/openssl-util/conffiles
|
||||||
/etc/ssl/openssl.cnf
|
/etc/ssl/openssl.cnf
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
OPENSSL_NO_CIPHERS:= no-idea no-md2 no-mdc2 no-rc5 no-sha0 no-rmd160 no-aes192
|
||||||
|
OPENSSL_OPTIONS:= shared no-ec no-err no-fips no-hw no-krb5 no-threads zlib-dynamic no-engines
|
||||||
|
|
||||||
define Build/Configure
|
define Build/Configure
|
||||||
$(SED) 's,/CFLAG=,/CFLAG= $(TARGET_SOFT_FLOAT) ,g' $(PKG_BUILD_DIR)/Configure
|
$(SED) 's,/CFLAG=,/CFLAG= $(TARGET_SOFT_FLOAT) ,g' $(PKG_BUILD_DIR)/Configure
|
||||||
$(SED) s/OPENWRT_OPTIMIZATION_FLAGS/$(BR2_TARGET_OPTIMIZATION)/g $(PKG_BUILD_DIR)/Configure
|
$(SED) s/OPENWRT_OPTIMIZATION_FLAGS/$(BR2_TARGET_OPTIMIZATION)/g $(PKG_BUILD_DIR)/Configure
|
||||||
(cd $(PKG_BUILD_DIR); \
|
(cd $(PKG_BUILD_DIR); \
|
||||||
./Configure linux-openwrt \
|
./Configure linux-openwrt \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--openssldir=/etc/ssl \
|
--openssldir=/etc/ssl \
|
||||||
-I$(STAGING_DIR)/usr/include \
|
-I$(STAGING_DIR)/usr/include \
|
||||||
-L$(STAGING_DIR)/usr/lib -ldl \
|
-L$(STAGING_DIR)/usr/lib -ldl \
|
||||||
-DOPENSSL_SMALL_FOOTPRINT \
|
-DOPENSSL_SMALL_FOOTPRINT \
|
||||||
$(OPENSSL_NO_CIPHERS) \
|
$(OPENSSL_NO_CIPHERS) \
|
||||||
$(OPENSSL_OPTIONS) \
|
$(OPENSSL_OPTIONS) \
|
||||||
)
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
@ -91,9 +108,10 @@ define Build/InstallDev
|
|||||||
mkdir -p $(STAGING_DIR)/usr/lib/
|
mkdir -p $(STAGING_DIR)/usr/lib/
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{crypto,ssl}.{a,so*} $(STAGING_DIR)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{crypto,ssl}.{a,so*} $(STAGING_DIR)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/UninstallDev
|
define Build/UninstallDev
|
||||||
rm -rf $(STAGING_DIR)/usr/include/openssl \
|
rm -rf \
|
||||||
|
$(STAGING_DIR)/usr/include/openssl \
|
||||||
$(STAGING_DIR)/usr/lib/lib{crypto,ssl}.{a,so*}
|
$(STAGING_DIR)/usr/lib/lib{crypto,ssl}.{a,so*}
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user