From patchwork Thu Aug 29 19:27:02 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Barnett X-Patchwork-Id: 270899 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 7DA2F2C00A1 for ; Fri, 30 Aug 2013 05:37:12 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9C3218D806; Thu, 29 Aug 2013 19:37:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YCX+aJP2XR3e; Thu, 29 Aug 2013 19:37:06 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 4F43E8D6E5; Thu, 29 Aug 2013 19:37:03 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 53CC11BF82D for ; Thu, 29 Aug 2013 19:36:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 449A58C829 for ; Thu, 29 Aug 2013 19:36:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KnMbIlE91shw for ; Thu, 29 Aug 2013 19:36:57 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from secvs01.rockwellcollins.com (secvs01.rockwellcollins.com [205.175.225.240]) by whitealder.osuosl.org (Postfix) with ESMTPS id 02BE18C455 for ; Thu, 29 Aug 2013 19:36:56 +0000 (UTC) Received: from nosuchhost.198.131.in-addr.arpa (HELO collinscrsmtp02.rockwellcollins.com) ([131.198.63.133]) by mail-virt.rockwellcollins.com with ESMTP; 29 Aug 2013 14:27:05 -0500 Received: from ares ([131.198.63.11]) by collinscrsmtp02.rockwellcollins.com (Lotus Domino Release 8.5.2FP2 HF162) with ESMTP id 2013082914270550-438751 ; Thu, 29 Aug 2013 14:27:05 -0500 From: Ryan Barnett To: buildroot@busybox.net Date: Thu, 29 Aug 2013 14:27:02 -0500 Message-Id: <1377804423-31230-2-git-send-email-rjbarnet@rockwellcollins.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1377804423-31230-1-git-send-email-rjbarnet@rockwellcollins.com> References: <1377804423-31230-1-git-send-email-rjbarnet@rockwellcollins.com> X-MIMETrack: Itemize by SMTP Server on CollinsCRSMTP02/CedarRapids/RockwellCollins(Release 8.5.2FP2 HF162|May 16, 2011) at 08/29/2013 02:27:05 PM, Serialize by Router on CollinsCRSMTP02/CedarRapids/RockwellCollins(Release 8.5.2FP2 HF162|May 16, 2011) at 08/29/2013 02:27:05 PM, Serialize complete at 08/29/2013 02:27:05 PM X-TNEFEvaluated: 1 Cc: Ryan Barnett Subject: [Buildroot] [PATCH 1/2] libssh2: add support for new package libssh2 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Adding new package - libssh2 - under Target packages > Libraries > Crypto > libssh2 libssh2 is a client-side C library implementing the SSH2 protocol. For more information on this package - see their website: http://www.libssh2.org/ Signed-off-by: Ryan Barnett --- package/Config.in | 1 + package/libssh2/Config.in | 18 ++++++++++++++++ package/libssh2/libssh2.mk | 49 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 68 insertions(+), 0 deletions(-) create mode 100644 package/libssh2/Config.in create mode 100644 package/libssh2/libssh2.mk diff --git a/package/Config.in b/package/Config.in index 97cd7da..668f550 100644 --- a/package/Config.in +++ b/package/Config.in @@ -424,6 +424,7 @@ source "package/libmcrypt/Config.in" source "package/libmhash/Config.in" source "package/libnss/Config.in" source "package/libsha1/Config.in" +source "package/libssh2/Config.in" source "package/nettle/Config.in" source "package/openssl/Config.in" source "package/polarssl/Config.in" diff --git a/package/libssh2/Config.in b/package/libssh2/Config.in new file mode 100644 index 0000000..73df86e --- /dev/null +++ b/package/libssh2/Config.in @@ -0,0 +1,18 @@ +config BR2_PACKAGE_LIBSSH2 + bool "libssh2" + help + libssh2 is a client-side C library implementing the SSH2 protocol + as defined by Internet Drafts: SECSH-TRANS(22), SECSH-USERAUTH(25), + SECSH-CONNECTION(23), SECSH-ARCH(20), SECSH-FILEXFER(06)*, + SECSH-DHGEX(04), and SECSH-NUMBERS(10) + + The package has support to use either OpenSSL or libgcrypt for + cryptographic operations. Please select one of these packages in + build configuration + + The package will default to selecting OpenSSL if neither libgcrypt + or OpenSSL are selected. Also if OpenSSL and libgcrypt are both present, + OpenSSL will be used over libgcrypt. + + http://www.libssh2.org/ + diff --git a/package/libssh2/libssh2.mk b/package/libssh2/libssh2.mk new file mode 100644 index 0000000..aef391e --- /dev/null +++ b/package/libssh2/libssh2.mk @@ -0,0 +1,49 @@ +############################################################# +# +# libssh2 +# +############################################################# + +LIBSSH2_VERSION = 1.4.3 +LIBSSH2_SITE = http://www.libssh2.org/download/ +LIBSSH2_LICENSE = BSD +LIBSSH2_LICENSE_FILES = COPYING +LIBSSH2_INSTALL_STAGING = YES +LIBSSH2_CONF_OPT = --disable-examples-buildg + +# libssh2 must use either libgcrypt or OpenSSL - OpenSSL will take precedence over libgcrypt +# However, if neither is selected, OpenSSL will be added to the build +ifeq ($(BR2_PACKAGE_OPENSSL),y) +LIBSSH2_DEPENDENCIES += openssl +LIBSSH2_CONF_OPT += --with-openssl --without-libgcrypt +else ifeq ($(BR2_PACKAGE_LIBGCRYPT),y) +LIBSSH2_DEPENDENCIES += libgcrypt +LIBSSH2_CONF_OPT += --with-libgcrypt --without-openssl +else +LIBSSH2_DEPENDENCIES += openssl +LIBSSH2_CONF_OPT += --with-openssl --without-libgcrypt +endif + +# Remove Documentation +ifneq ($(BR2_HAVE_DOCUMENTATION),y) +define LIBSSH2_TARGET_REMOVE_DOCUMENTATION + rm -f $(TARGET_DIR)/usr/share/man/man3/libssh2* +endef +LIBSSH2_POST_INSTALL_TARGET_HOOKS += LIBSSH2_TARGET_REMOVE_DOCUMENTATION +endif + +# Remove unneeded files from target +LIBSSH2_UNNEEDED_FILES = \ + usr/include/libssh2.h \ + usr/include/libssh2_publickey.h \ + usr/include/libssh2_sftp.h \ + usr/lib/pkgconfig/libssh2.pc \ + usr/lib/libssh2.la \ + usr/lib/libssh2.a + +define LIBSSH2_TARGET_REMOVE_UNNEEDED_FILES + rm -rf $(addprefix $(TARGET_DIR)/, $(LIBSSH2_UNNEEDED_FILES)) +endef +LIBSSH2_POST_INSTALL_TARGET_HOOKS += LIBSSH2_TARGET_REMOVE_UNNEEDED_FILES + +$(eval $(autotools-package))