summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libgcrypt
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
commitc527fd1f14c27855a37f2e8ac5346ce8d940ced2 (patch)
treebb002c1fdf011c41dbd2f0927bed23ecb5f83c97 /meta/recipes-support/libgcrypt
downloadpoky-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-support/libgcrypt')
-rw-r--r--meta/recipes-support/libgcrypt/files/add-pkgconfig-support.patch51
-rw-r--r--meta/recipes-support/libgcrypt/files/libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch32
-rw-r--r--meta/recipes-support/libgcrypt/libgcrypt.inc31
-rw-r--r--meta/recipes-support/libgcrypt/libgcrypt_1.5.3.bb4
4 files changed, 118 insertions, 0 deletions
diff --git a/meta/recipes-support/libgcrypt/files/add-pkgconfig-support.patch b/meta/recipes-support/libgcrypt/files/add-pkgconfig-support.patch
new file mode 100644
index 0000000000..3e33679731
--- /dev/null
+++ b/meta/recipes-support/libgcrypt/files/add-pkgconfig-support.patch
@@ -0,0 +1,51 @@
1Upstream-Status: Inappropriate [distribution]
2
3Index: libgcrypt-1.2.4/configure.ac
4===================================================================
5--- libgcrypt-1.2.4.orig/configure.ac 2008-03-19 22:14:50.000000000 +0000
6+++ libgcrypt-1.2.4/configure.ac 2008-03-19 22:14:58.000000000 +0000
7@@ -807,6 +807,7 @@
8 doc/Makefile
9 src/Makefile
10 src/gcrypt.h
11+src/libgcrypt.pc
12 src/libgcrypt-config
13 tests/Makefile
14 w32-dll/Makefile
15Index: libgcrypt-1.2.4/src/libgcrypt.pc.in
16===================================================================
17--- /dev/null 1970-01-01 00:00:00.000000000 +0000
18+++ libgcrypt-1.2.4/src/libgcrypt.pc.in 2008-03-19 22:14:58.000000000 +0000
19@@ -0,0 +1,32 @@
20+# Process this file with autoconf to produce a pkg-config metadata file.
21+# Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation
22+# Author: Simon Josefsson
23+#
24+# This file is free software; as a special exception the author gives
25+# unlimited permission to copy and/or distribute it, with or without
26+# modifications, as long as this notice is preserved.
27+#
28+# This file is distributed in the hope that it will be useful, but
29+# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
30+# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
31+
32+prefix=@prefix@
33+exec_prefix=@exec_prefix@
34+libdir=@libdir@
35+includedir=@includedir@
36+
37+# API info
38+api_version=@LIBGCRYPT_CONFIG_API_VERSION@
39+
40+# Misc information.
41+symmetric_ciphers=@LIBGCRYPT_CIPHERS@
42+asymmetric_ciphers=@LIBGCRYPT_PUBKEY_CIPHERS@
43+digests=@LIBGCRYPT_DIGESTS@
44+
45+Name: libgcrypt
46+Description: GNU crypto library
47+URL: http://www.gnupg.org
48+Version: @VERSION@
49+Libs: -L${libdir} -lgcrypt
50+Libs.private: -L${libdir} -lgpg-error
51+Cflags: -I${includedir}
diff --git a/meta/recipes-support/libgcrypt/files/libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch b/meta/recipes-support/libgcrypt/files/libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch
new file mode 100644
index 0000000000..a3e540369c
--- /dev/null
+++ b/meta/recipes-support/libgcrypt/files/libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch
@@ -0,0 +1,32 @@
1Upstream-Status: Pending
2
3libgcrypt: fix building error with '-O2' in sysroot path
4
5Characters like '-O2' or '-Ofast' will be replaced by '-O1' when compiling cipher.
6If we are cross compiling libgcrypt and sysroot contains such characters, we would
7get compile errors because the sysroot path has been modified.
8
9Fix this by adding blank spaces before and after the original matching pattern in the
10sed command.
11
12Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
13---
14 cipher/Makefile.am | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/cipher/Makefile.am b/cipher/Makefile.am
18index 76cdc96..9a89792 100644
19--- a/cipher/Makefile.am
20+++ b/cipher/Makefile.am
21@@ -69,7 +69,7 @@ rfc2268.c \
22 camellia.c camellia.h camellia-glue.c
23
24 if ENABLE_O_FLAG_MUNGING
25-o_flag_munging = sed -e 's/-O\([2-9s][2-9s]*\)/-O1/' -e 's/-Ofast/-O1/g'
26+o_flag_munging = sed -e 's/ -O\([2-9s][2-9s]*\) / -O1 /' -e 's/ -Ofast / -O1 /g'
27 else
28 o_flag_munging = cat
29 endif
30--
311.7.9.5
32
diff --git a/meta/recipes-support/libgcrypt/libgcrypt.inc b/meta/recipes-support/libgcrypt/libgcrypt.inc
new file mode 100644
index 0000000000..e7fcc62908
--- /dev/null
+++ b/meta/recipes-support/libgcrypt/libgcrypt.inc
@@ -0,0 +1,31 @@
1SUMMARY = "General purpose cryptographic library based on the code from GnuPG"
2HOMEPAGE = "http://directory.fsf.org/project/libgcrypt/"
3BUGTRACKER = "https://bugs.g10code.com/gnupg/index"
4SECTION = "libs"
5
6# helper program gcryptrnd and getrandom are under GPL, rest LGPL
7LICENSE = "GPLv2+ & LGPLv2.1+"
8LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
9 file://COPYING.LIB;md5=bbb461211a33b134d42ed5ee802b37ff"
10
11DEPENDS = "libgpg-error libcap"
12
13SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz \
14 file://add-pkgconfig-support.patch \
15 file://libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch"
16
17inherit autotools-brokensep binconfig pkgconfig
18
19EXTRA_OECONF = "--disable-asm --with-capabilities"
20
21# libgcrypt.pc is added locally and thus installed here
22do_install_append() {
23 install -d ${D}/${libdir}/pkgconfig
24 install -m 0644 ${B}/src/libgcrypt.pc ${D}/${libdir}/pkgconfig/
25}
26
27FILES_${PN}-dev += "${bindir}/dumpsexp ${bindir}/hmac256"
28
29ARM_INSTRUCTION_SET = "arm"
30
31BBCLASSEXTEND = "native"
diff --git a/meta/recipes-support/libgcrypt/libgcrypt_1.5.3.bb b/meta/recipes-support/libgcrypt/libgcrypt_1.5.3.bb
new file mode 100644
index 0000000000..b8b3590492
--- /dev/null
+++ b/meta/recipes-support/libgcrypt/libgcrypt_1.5.3.bb
@@ -0,0 +1,4 @@
1require libgcrypt.inc
2
3SRC_URI[md5sum] = "3ccf8f1bf758a08e924cf5a36754f564"
4SRC_URI[sha256sum] = "9dd2f359c16d7b8128d53f019c685cdedbcdcd1888904228a272d4769d9bf4e6"