Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_LIBGSASL
bool "libgsasl"
help
Simple Authentication and Security Layer framework Library.
GNU SASL is an implementation of the Simple Authentication and
Security Layer framework and a few common SASL mechanisms.
SASL is used by network servers (e.g., IMAP, SMTP) to request
authentication from clients, and in clients to authenticate
against servers.
http://www.gnu.org/software/gsasl

View File

@@ -0,0 +1,2 @@
# Locally calculated after checking pgp signature
sha256 3adfb49f9c92a719dea855fd1840d698cde55d4648d332a69032ba8bea207720 libgsasl-1.8.0.tar.gz

View File

@@ -0,0 +1,22 @@
################################################################################
#
# libgsasl
#
################################################################################
LIBGSASL_VERSION = 1.8.0
LIBGSASL_SITE = $(BR2_GNU_MIRROR)/gsasl
LIBGSASL_LICENSE = LGPLv2.1+ (library), GPLv3+ (programs)
LIBGSASL_LICENSE_FILES = README COPYING.LIB COPYING
LIBGSASL_INSTALL_STAGING = YES
# It doesn't seem to build with our libgcrypt so better be safe
LIBGSASL_CONF_OPTS = --without-libgcrypt
ifeq ($(BR2_PACKAGE_LIBIDN),y)
LIBGSASL_CONF_OPTS += --with-libidn-prefix=$(STAGING_DIR)/usr
LIBGSASL_DEPENDENCIES += libidn
else
LIBGSASL_CONF_OPTS += --without-stringprep
endif
$(eval $(autotools-package))