From patchwork Mon May 7 20:59:44 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stijn Souffriau X-Patchwork-Id: 157465 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id C5759B6FA9 for ; Tue, 8 May 2012 07:00:39 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 67DAD32A6A; Mon, 7 May 2012 21:00:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dJSKpAuqT5TG; Mon, 7 May 2012 21:00:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 7B4F332A79; Mon, 7 May 2012 21:00:36 +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 7591F8F78E for ; Mon, 7 May 2012 21:00:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3A1BC8AA30 for ; Mon, 7 May 2012 21:00:35 +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 0-Dhh0w-yBpX for ; Mon, 7 May 2012 21:00:33 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from viper.mind.be (132.79-246-81.adsl-static.isp.belgacom.be [81.246.79.132]) by whitealder.osuosl.org (Postfix) with ESMTPS id 3D31A8A2B9 for ; Mon, 7 May 2012 21:00:33 +0000 (UTC) Received: from [172.16.0.18] (helo=localhost.localdomain) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1SRV2e-00028n-3o; Mon, 07 May 2012 23:00:31 +0200 From: Stijn Souffriau To: buildroot@busybox.net Date: Mon, 7 May 2012 22:59:44 +0200 Message-Id: <1336424385-8933-4-git-send-email-stijn.souffriau@essensium.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1336424385-8933-1-git-send-email-stijn.souffriau@essensium.com> References: <1336424385-8933-1-git-send-email-stijn.souffriau@essensium.com> Subject: [Buildroot] [PATCH 4/5] Added the gnupg package. 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 --- package/Config.in | 1 + package/gnupg/Config.in | 12 +++++++ ...gnupg-0001-removed-autogenerated-stdint.h.patch | 31 ++++++++++++++++++++ package/gnupg/gnupg.mk | 23 ++++++++++++++ 4 files changed, 67 insertions(+), 0 deletions(-) create mode 100644 package/gnupg/Config.in create mode 100644 package/gnupg/gnupg-0001-removed-autogenerated-stdint.h.patch create mode 100644 package/gnupg/gnupg.mk diff --git a/package/Config.in b/package/Config.in index 5ed6196..17fa8eb 100644 --- a/package/Config.in +++ b/package/Config.in @@ -439,6 +439,7 @@ endmenu menu "Miscellaneous" source "package/shared-mime-info/Config.in" +source "package/gnupg/Config.in" endmenu menu "Networking applications" diff --git a/package/gnupg/Config.in b/package/gnupg/Config.in new file mode 100644 index 0000000..56a79a1 --- /dev/null +++ b/package/gnupg/Config.in @@ -0,0 +1,12 @@ +config BR2_PACKAGE_GNUPG + bool "gnupg" + select BR2_PACKAGE_LIBGPG_ERROR + select BR2_PACKAGE_LIBGCRYPT + select BR2_PACKAGE_LIBKSBA + select BR2_PACKAGE_LIBASSUAN + select BR2_PACKAGE_LIBPTH + select BR2_PACKAGE_ZLIB + help + GnuPG 2.0 is the new modularized version of GnuPG supporting OpenPGP and S/MIME + + http://www.gnupg.org/ diff --git a/package/gnupg/gnupg-0001-removed-autogenerated-stdint.h.patch b/package/gnupg/gnupg-0001-removed-autogenerated-stdint.h.patch new file mode 100644 index 0000000..a382cf6 --- /dev/null +++ b/package/gnupg/gnupg-0001-removed-autogenerated-stdint.h.patch @@ -0,0 +1,31 @@ +From 53a02ec3a77ecd0d57660a55c55764bdc0063ec1 Mon Sep 17 00:00:00 2001 +From: Stijn Souffriau +Date: Sun, 6 May 2012 23:19:38 +0200 +Subject: [PATCH] removed autogenerated stdint.h + +--- + gl/Makefile.in | 7 +++---- + 1 files changed, 3 insertions(+), 4 deletions(-) + +diff --git a/gl/Makefile.in b/gl/Makefile.in +index 7cc38e0..df06b73 100644 +--- a/gl/Makefile.in ++++ b/gl/Makefile.in +@@ -298,11 +298,10 @@ libgnu_a_SOURCES = allocsa.h allocsa.c mkdtemp.h setenv.h size_max.h \ + strpbrk.h xsize.h + libgnu_a_LIBADD = $(LIBOBJS) + noinst_HEADERS = +-EXTRA_DIST = alloca_.h allocsa.valgrind stdint_.h +-BUILT_SOURCES = $(ALLOCA_H) $(STDINT_H) $(UNISTD_H) ++EXTRA_DIST = alloca_.h allocsa.valgrind ++BUILT_SOURCES = $(ALLOCA_H) $(UNISTD_H) + SUFFIXES = +-MOSTLYCLEANFILES = core *.stackdump alloca.h alloca.h-t stdint.h \ +- stdint.h-t unistd.h ++MOSTLYCLEANFILES = core *.stackdump alloca.h alloca.h-t unistd.h + MOSTLYCLEANDIRS = + CLEANFILES = + DISTCLEANFILES = +-- +1.7.0.4 + diff --git a/package/gnupg/gnupg.mk b/package/gnupg/gnupg.mk new file mode 100644 index 0000000..a9cdf38 --- /dev/null +++ b/package/gnupg/gnupg.mk @@ -0,0 +1,23 @@ +############################################################# +# +# libgpg-error +# +############################################################# +GNUPG_VERSION = 2.0.19 +GNUPG_SOURCE = gnupg-$(GNUPG_VERSION).tar.bz2 +GNUPG_SITE = ftp://ftp.gnupg.org/gcrypt/gnupg/ +GNUPG_DEPENDENCIES= libgpg-error libgcrypt libassuan libksba libpth zlib libiconv + +GNUPG_INSTALL_STAGING = YES + +GNUPG_CONF_OPT = \ + --disable-optimization \ + --with-gpg-error-prefix=$(STAGING_DIR)/usr \ + --with-libgcrypt-prefix=$(STAGING_DIR)/usr \ + --with-libassuan-prefix=$(STAGING_DIR)/usr \ + --with-ksba-prefix=$(STAGING_DIR)/usr \ + --with-pth-prefix=$(STAGING_DIR)/usr \ + --with-zlib=$(STAGING_DIR)/usr/lib \ + --with-libiconv-prefix=$(STAGING_DIR)/usr + +$(eval $(call AUTOTARGETS))