diff options
author | Jakob Drexel <jake42@rommel.stw.uni-erlangen.de> | 2014-01-13 19:31:20 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-01-22 12:22:36 +0100 |
commit | e021ccee741e406cacba8f30d92c3161e64eb17d (patch) | |
tree | 9a8bff926b167a73a9463b11e28c974f00139577 | |
parent | 52e218c739912edd614741a980cb3bd70cf65e19 (diff) | |
download | meta-openembedded-e021ccee741e406cacba8f30d92c3161e64eb17d.tar.gz |
pidgin: Add libotr recipe and patch to fix QA-issue
Signed-off-by: Jakob Drexel <jake42@rommel.stw.uni-erlangen.de>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/pidgin/libotr/fix_qa-issue_include.patch | 18 | ||||
-rw-r--r-- | meta-oe/recipes-support/pidgin/libotr_4.0.0.bb | 14 |
2 files changed, 32 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/pidgin/libotr/fix_qa-issue_include.patch b/meta-oe/recipes-support/pidgin/libotr/fix_qa-issue_include.patch new file mode 100644 index 000000000..b78663310 --- /dev/null +++ b/meta-oe/recipes-support/pidgin/libotr/fix_qa-issue_include.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | libotr: Fix QA-issue where also files from buildhost would be included | ||
2 | |||
3 | Warning was: | ||
4 | cc1: warning: include location "/usr/include" is unsafe for | ||
5 | cross-compilation [-Wpoison-system-directories] | ||
6 | |||
7 | Upstream-Status: Pending | ||
8 | |||
9 | Signed-off-by: Jakob Drexel <jake42@rommel.stw.uni-erlangen.de> | ||
10 | |||
11 | --- a/toolkit/Makefile.am 2012-05-03 15:52:22.000000000 +0200 | ||
12 | +++ b/toolkit/Makefile.am 2014-01-13 12:12:26.030369357 +0100 | ||
13 | @@ -1,4 +1,4 @@ | ||
14 | -INCLUDES = -I$(includedir) -I../src @LIBGCRYPT_CFLAGS@ | ||
15 | +INCLUDES = -I../src @LIBGCRYPT_CFLAGS@ | ||
16 | |||
17 | noinst_HEADERS = aes.h ctrmode.h parse.h sesskeys.h readotr.h sha1hmac.h | ||
18 | |||
diff --git a/meta-oe/recipes-support/pidgin/libotr_4.0.0.bb b/meta-oe/recipes-support/pidgin/libotr_4.0.0.bb new file mode 100644 index 000000000..bb7950174 --- /dev/null +++ b/meta-oe/recipes-support/pidgin/libotr_4.0.0.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | DESCRIPTION = "(OTR) Messaging allows you to have private conversations over instant messaging" | ||
2 | HOMEPAGE = "http://www.cypherpunks.ca/otr/" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=92fe174bad6da3763f6e9e9eaff6df24" | ||
5 | DEPENDS = "libgcrypt libgpg-error" | ||
6 | |||
7 | SRC_URI = "http://www.cypherpunks.ca/otr/${P}.tar.gz \ | ||
8 | file://fix_qa-issue_include.patch \ | ||
9 | " | ||
10 | |||
11 | SRC_URI[md5sum] = "00979dca82d70383fcd1b01f3974363c" | ||
12 | SRC_URI[sha256sum] = "3f911994409898e74527730745ef35ed75c352c695a1822a677a34b2cf0293b4" | ||
13 | |||
14 | inherit autotools pkgconfig | ||