diff mbox

[4/5] Added the gnupg package.

Message ID 1336598986-9518-4-git-send-email-stijn.souffriau@essensium.com
State Rejected
Headers show

Commit Message

Stijn Souffriau May 9, 2012, 9:29 p.m. UTC
---
 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

Comments

Gustavo Zacarias May 10, 2012, 10:45 a.m. UTC | #1
On 2012-05-09 18:29, Stijn Souffriau wrote:

> +++ 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/

depends on BR2_TOOLCHAIN_EXTERNAL_GLIBC || BR2_TOOLCHAIN_CTNG_glibc || 
BR2_TOOLCHAIN_CTNG_eglibc
Needs pth which doesn't work with uClibc.
Regards.
diff mbox

Patch

diff --git a/package/Config.in b/package/Config.in
index 3035aaf..3352c88 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -438,6 +438,7 @@  endmenu
 endmenu
 
 menu "Miscellaneous"
+source "package/gnupg/Config.in"
 source "package/shared-mime-info/Config.in"
 endmenu
 
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 <stijn.souffriau@essensium.com>
+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))