diff options
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/pidgin/pidgin-otr/ignore_extra-portability_warnings.patch | 19 | ||||
-rw-r--r-- | meta-oe/recipes-support/pidgin/pidgin-otr_4.0.0.bb | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/pidgin/pidgin-otr/ignore_extra-portability_warnings.patch b/meta-oe/recipes-support/pidgin/pidgin-otr/ignore_extra-portability_warnings.patch new file mode 100644 index 000000000..db0ad873b --- /dev/null +++ b/meta-oe/recipes-support/pidgin/pidgin-otr/ignore_extra-portability_warnings.patch | |||
@@ -0,0 +1,19 @@ | |||
1 | pidgin-otr: Silence no-extra-portability warnings | ||
2 | |||
3 | Make it build with OE, was not building with warning turned on | ||
4 | |||
5 | Upstream-Status: Pending | ||
6 | |||
7 | Signed-off-by: Jakob Drexel <jake42@rommel.stw.uni-erlangen.de> | ||
8 | |||
9 | --- a/configure.ac 2012-09-01 17:03:19.000000000 +0200 | ||
10 | +++ b/configure.ac 2014-01-12 21:59:24.920300215 +0100 | ||
11 | @@ -4,7 +4,7 @@ | ||
12 | |||
13 | AM_CONFIG_HEADER(config.h) | ||
14 | |||
15 | -AM_INIT_AUTOMAKE([-Wall -Werror]) | ||
16 | +AM_INIT_AUTOMAKE([-Wall -Werror -Wno-extra-portability]) | ||
17 | |||
18 | AC_PROG_CC | ||
19 | |||
diff --git a/meta-oe/recipes-support/pidgin/pidgin-otr_4.0.0.bb b/meta-oe/recipes-support/pidgin/pidgin-otr_4.0.0.bb new file mode 100644 index 000000000..93139b98d --- /dev/null +++ b/meta-oe/recipes-support/pidgin/pidgin-otr_4.0.0.bb | |||
@@ -0,0 +1,19 @@ | |||
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 libotr pidgin" | ||
6 | |||
7 | SRC_URI = "http://www.cypherpunks.ca/otr/${P}.tar.gz \ | ||
8 | file://ignore_extra-portability_warnings.patch \ | ||
9 | " | ||
10 | |||
11 | SRC_URI[md5sum] = "eadb953376acc474e56041d4c12aa2c8" | ||
12 | SRC_URI[sha256sum] = "d56b3f092dbe9ee6597641c7d2dd294884dc04ba47aaf4ec571cd54977df4691" | ||
13 | |||
14 | |||
15 | FILES_${PN} = "${libdir}/pidgin/*" | ||
16 | FILES_${PN}-dbg = "${libdir}/pidgin/.debug" | ||
17 | FILES_${PN}-dbg += "${libdir}/pidgin/.debug/pidgin-otr.so" | ||
18 | FILES_${PN}-dbg += "/usr/src/debug/pidgin-otr/${PV}-${PR}/${P}/*" | ||
19 | inherit autotools pkgconfig | ||