2006-07-23 12:11:27 +00:00
|
|
|
#
|
2007-09-07 20:27:27 +00:00
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
2006-07-23 12:11:27 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gnutls
|
2007-09-07 20:27:27 +00:00
|
|
|
PKG_VERSION:=2.0.0
|
|
|
|
PKG_RELEASE:=1
|
2006-07-23 12:11:27 +00:00
|
|
|
|
2007-09-07 20:27:27 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://josefsson.org/gnutls/releases/ \
|
2006-07-23 12:11:27 +00:00
|
|
|
http://www.mirrors.wiretapped.net/security/network-security/gnutls/ \
|
2007-09-07 20:27:27 +00:00
|
|
|
ftp://ftp.gnutls.org/pub/gnutls/ \
|
|
|
|
ftp://ftp.gnupg.org/gcrypt/alpha/gnutls/ \
|
|
|
|
ftp://ftp.mirrors.wiretapped.net/pub/security/network-security/gnutls/
|
|
|
|
PKG_MD5SUM:=181b2ff554a83e6cf85505ea16699d39
|
2006-07-23 12:11:27 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
define Package/gnutls/Default
|
2006-07-23 12:11:27 +00:00
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2006-10-28 22:43:08 +00:00
|
|
|
TITLE:=GNU TLS
|
2006-07-23 12:11:27 +00:00
|
|
|
URL:=http://www.gnu.org/software/gnutls/
|
|
|
|
endef
|
|
|
|
|
2007-09-07 20:27:27 +00:00
|
|
|
define Package/gnutls/Default/description
|
|
|
|
GnuTLS is a project that aims to develop a library which provides a
|
|
|
|
secure layer, over a reliable transport layer. Currently the GnuTLS
|
|
|
|
library implements the proposed standards by the IETF's TLS working
|
|
|
|
group.
|
|
|
|
endef
|
|
|
|
|
2006-07-26 01:26:21 +00:00
|
|
|
define Package/gnutls-utils
|
2006-10-28 22:43:08 +00:00
|
|
|
$(call Package/gnutls/Default)
|
2006-07-26 01:26:21 +00:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2007-09-07 20:27:27 +00:00
|
|
|
DEPENDS:=+libgnutls +libgpg-error
|
2006-10-28 22:43:08 +00:00
|
|
|
TITLE+= (utilities)
|
|
|
|
DESCRIPTION+=\\\
|
|
|
|
\\\
|
|
|
|
This package contains some GnuTLS utilities.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libgnutls
|
|
|
|
$(call Package/gnutls/Default)
|
|
|
|
DEPENDS:=+libgcrypt
|
|
|
|
TITLE+= (library)
|
|
|
|
DESCRIPTION+=\\\
|
|
|
|
\\\
|
|
|
|
This package contains the GnuTLS shared libraries, needed by other programs.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libgnutls-openssl
|
|
|
|
$(call Package/gnutls/Default)
|
|
|
|
DEPENDS:=libgnutls
|
|
|
|
TITLE+= (OpenSSL compat library)
|
|
|
|
DESCRIPTION+=\\\
|
|
|
|
\\\
|
|
|
|
This package contains the GnuTLS OpenSSL compatibility layer shared library.
|
2006-07-23 12:11:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2006-10-28 22:43:08 +00:00
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--disable-srp-authentication \
|
|
|
|
--with-included-libtasn1=yes \
|
|
|
|
--with-included-libcfg=yes \
|
2007-09-07 20:27:27 +00:00
|
|
|
--without-libopencdk-prefix \
|
2006-10-28 22:43:08 +00:00
|
|
|
--without-zlib \
|
|
|
|
--without-lzo \
|
|
|
|
)
|
2007-09-07 20:27:27 +00:00
|
|
|
$(call libtool_disable_rpath)
|
2006-07-23 12:11:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2007-09-07 20:27:27 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) all
|
|
|
|
$(call libtool_fixup_libdir,$(PKG_INSTALL_DIR))
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" all install
|
2006-07-23 12:11:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
mkdir -p $(STAGING_DIR)/usr/bin
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/libgnutls{,-extra}-config $(STAGING_DIR)/usr/bin/
|
|
|
|
mkdir -p $(STAGING_DIR)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/gnutls $(STAGING_DIR)/usr/include/
|
|
|
|
mkdir -p $(STAGING_DIR)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libgnutls{,-extra,-openssl}.{a,so*} $(STAGING_DIR)/usr/lib/
|
|
|
|
mkdir -p $(STAGING_DIR)/usr/lib/pkgconfig
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/gnutls{,-extra}.pc $(STAGING_DIR)/usr/lib/pkgconfig/
|
2006-07-26 03:19:36 +00:00
|
|
|
$(SED) 's,-I$$$${includedir},,g' $(STAGING_DIR)/usr/lib/pkgconfig/gnutls{,-extra}.pc
|
|
|
|
$(SED) 's,-L$$$${libdir},,g' $(STAGING_DIR)/usr/lib/pkgconfig/gnutls{,-extra}.pc
|
2007-05-18 09:43:14 +00:00
|
|
|
$(SED) "s,"prefix\=/usr",prefix=$(STAGING_DIR)/usr," $(STAGING_DIR)/usr/lib/pkgconfig/gnutls-extra.pc
|
|
|
|
$(SED) "s,"exec_prefix\=/usr",exec_prefix=$(STAGING_DIR)/usr," $(STAGING_DIR)/usr/lib/pkgconfig/gnutls-extra.pc
|
2006-07-23 12:11:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/UninstallDev
|
2006-10-28 22:43:08 +00:00
|
|
|
rm -rf $(STAGING_DIR)/usr/bin/libgnutls{,-extra}-config \
|
2006-07-23 12:11:27 +00:00
|
|
|
$(STAGING_DIR)/usr/include/gnutls \
|
|
|
|
$(STAGING_DIR)/usr/lib/libgnutls{,-extra,-openssl}.{a,so*} \
|
|
|
|
$(STAGING_DIR)/usr/lib/pkgconfig/gnutls{,-extra}.pc \
|
|
|
|
$(STAGING_DIR)/usr/share/aclocal/libgnutls{,-extra}.m4
|
|
|
|
endef
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
define Package/gnutls-utils/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2006-10-28 22:43:08 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/certtool $(1)/usr/bin/
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/gnutls-{cli,serv} $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libgnutls/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2006-10-28 22:43:08 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libgnutls{,-extra}.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libgnutls-openssl/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2006-10-28 22:43:08 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libgnutls-openssl.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gnutls-utils))
|
2006-07-23 12:11:27 +00:00
|
|
|
$(eval $(call BuildPackage,libgnutls))
|
|
|
|
$(eval $(call BuildPackage,libgnutls-openssl))
|