diff options
| author | Herrie <github.com@herrie.org> | 2016-05-05 15:14:49 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-05-06 12:40:27 +0200 |
| commit | 2ff8e7e86aedb0ec3aaa1186e46aa145da1f379c (patch) | |
| tree | 6c7ec969c58348019e2729ebb6ee288732f662d9 | |
| parent | 09806901be06fd99b0c7ed3f15bc4de2d03ec174 (diff) | |
| download | meta-openembedded-2ff8e7e86aedb0ec3aaa1186e46aa145da1f379c.tar.gz | |
pidgin: Update to 2.10.12
Which is compatible with GnuTLS that's included in Krogoth.
Signed-off-by: Herman van Hazendonk <github.com@herrie.org>
| -rw-r--r-- | meta-oe/recipes-support/pidgin/pidgin/pidgin-cross-python-265.patch | 35 | ||||
| -rw-r--r-- | meta-oe/recipes-support/pidgin/pidgin/pidgin.desktop-set-icon.patch | 11 | ||||
| -rw-r--r-- | meta-oe/recipes-support/pidgin/pidgin_2.10.12.bb (renamed from meta-oe/recipes-support/pidgin/pidgin_2.10.9.bb) | 10 |
3 files changed, 26 insertions, 30 deletions
diff --git a/meta-oe/recipes-support/pidgin/pidgin/pidgin-cross-python-265.patch b/meta-oe/recipes-support/pidgin/pidgin/pidgin-cross-python-265.patch index 57c4c46814..cfc681cd81 100644 --- a/meta-oe/recipes-support/pidgin/pidgin/pidgin-cross-python-265.patch +++ b/meta-oe/recipes-support/pidgin/pidgin/pidgin-cross-python-265.patch | |||
| @@ -1,16 +1,27 @@ | |||
| 1 | Index: pidgin-2.6.5/configure.ac | 1 | From 428836ba7f9048970626ef0d6b805107f7c52d33 Mon Sep 17 00:00:00 2001 |
| 2 | =================================================================== | 2 | From: Herrie <github.com@herrie.org> |
| 3 | --- pidgin-2.6.5.orig/configure.ac | 3 | Date: Thu, 5 May 2016 13:33:29 +0200 |
| 4 | +++ pidgin-2.6.5/configure.ac | 4 | Subject: [PATCH] Updated python patch |
| 5 | @@ -1470,8 +1470,9 @@ if test "_$pythonpath" != _ ; then | 5 | |
| 6 | AC_CHECK_LIB(pthread, pthread_create, ) | 6 | --- |
| 7 | AC_CHECK_LIB(util, openpty, ) | 7 | configure.ac | 6 +++--- |
| 8 | AC_CHECK_LIB(db, dbopen, ) | 8 | 1 file changed, 3 insertions(+), 3 deletions(-) |
| 9 | - PY_LIBS="-L$PY_EXEC_PREFIX/lib/python$PY_VERSION/config -lpython$PY_VERSION" | 9 | |
| 10 | - PY_CFLAGS="-I$PY_PREFIX/include/python$PY_VERSION" | 10 | diff --git a/configure.ac b/configure.ac |
| 11 | index 94ea8cf..2285adb 100644 | ||
| 12 | --- a/configure.ac | ||
| 13 | +++ b/configure.ac | ||
| 14 | @@ -1587,9 +1587,9 @@ dnl (Thanks to XChat) | ||
| 15 | if test "x$enable_consoleui" = "xyes" -a ! -z "$PYTHON" -a x"$PYTHON" != x"no" ; then | ||
| 16 | AC_MSG_CHECKING(for Python compile flags) | ||
| 17 | if test -f ${PYTHON}-config; then | ||
| 18 | - PY_CFLAGS=`${PYTHON}-config --includes` | ||
| 19 | - PY_LIBS=`${PYTHON}-config --libs` | ||
| 20 | - AC_DEFINE(USE_PYTHON, [1], [Define if python headers are available.]) | ||
| 11 | + m4_pattern_allow([^PKG_CONFIG_SYSROOT_DIR$]) | 21 | + m4_pattern_allow([^PKG_CONFIG_SYSROOT_DIR$]) |
| 12 | + PY_LIBS="-L$PKG_CONFIG_SYSROOT_DIR/usr/lib/python$PY_VERSION/config -lpython$PY_VERSION" | 22 | + PY_LIBS="-L$PKG_CONFIG_SYSROOT_DIR/usr/lib/python$PY_VERSION/config -lpython$PY_VERSION" |
| 13 | + PY_CFLAGS="-I$PKG_CONFIG_SYSROOT_DIR/usr/include/python$PY_VERSION" | 23 | + PY_CFLAGS="-I$PKG_CONFIG_SYSROOT_DIR/usr/include/python$PY_VERSION" AC_DEFINE(USE_PYTHON, [1], [Define if python headers are available.]) |
| 14 | AC_DEFINE(USE_PYTHON, [1], [Define if python headers are available.]) | ||
| 15 | AC_MSG_RESULT(ok) | 24 | AC_MSG_RESULT(ok) |
| 16 | else | 25 | else |
| 26 | AC_MSG_RESULT([Cannot find ${PYTHON}-config]) | ||
| 27 | |||
diff --git a/meta-oe/recipes-support/pidgin/pidgin/pidgin.desktop-set-icon.patch b/meta-oe/recipes-support/pidgin/pidgin/pidgin.desktop-set-icon.patch deleted file mode 100644 index 05f76895ba..0000000000 --- a/meta-oe/recipes-support/pidgin/pidgin/pidgin.desktop-set-icon.patch +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | --- pidgin-2.0.1/pidgin.desktop.in.orig 2007-06-20 23:50:44.000000000 +0000 | ||
| 2 | +++ pidgin-2.0.1/pidgin.desktop.in 2007-06-20 23:51:05.000000000 +0000 | ||
| 3 | @@ -4,7 +4,7 @@ | ||
| 4 | _GenericName=Internet Messenger | ||
| 5 | _Comment=Send instant messages over multiple protocols | ||
| 6 | Exec=pidgin | ||
| 7 | -Icon=pidgin | ||
| 8 | +Icon=/usr/share/icons/hicolor/48x48/apps/pidgin.png | ||
| 9 | StartupNotify=true | ||
| 10 | Terminal=false | ||
| 11 | Type=Application | ||
diff --git a/meta-oe/recipes-support/pidgin/pidgin_2.10.9.bb b/meta-oe/recipes-support/pidgin/pidgin_2.10.12.bb index 83521100db..9133c1ce29 100644 --- a/meta-oe/recipes-support/pidgin/pidgin_2.10.9.bb +++ b/meta-oe/recipes-support/pidgin/pidgin_2.10.12.bb | |||
| @@ -2,23 +2,19 @@ DESCRIPTION = "multi-protocol instant messaging client" | |||
| 2 | SECTION = "x11/network" | 2 | SECTION = "x11/network" |
| 3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
| 5 | DEPENDS = "python startup-notification avahi gtk+ ncurses gnutls virtual/libintl gstreamer dbus intltool-native farsight2 libidn" | 5 | DEPENDS = "python startup-notification avahi gtk+ ncurses gnutls virtual/libintl gstreamer dbus intltool-native farsight2 libidn libxml2 gconf dbus-glib" |
| 6 | 6 | ||
| 7 | inherit autotools gettext pkgconfig gconf perlnative | 7 | inherit autotools gettext pkgconfig gconf perlnative |
| 8 | 8 | ||
| 9 | # http://errors.yoctoproject.org/Errors/Details/25824/ | ||
| 10 | PNBLACKLIST[pidgin] ?= "Not compatible with gnutls version 3.4 currently in oe-core and also depends on broken libnice through farsight2" | ||
| 11 | |||
| 12 | SRC_URI = "\ | 9 | SRC_URI = "\ |
| 13 | ${SOURCEFORGE_MIRROR}/pidgin/pidgin-${PV}.tar.bz2 \ | 10 | ${SOURCEFORGE_MIRROR}/pidgin/pidgin-${PV}.tar.bz2 \ |
| 14 | file://sanitize-configure.ac.patch \ | 11 | file://sanitize-configure.ac.patch \ |
| 15 | file://pidgin.desktop-set-icon.patch \ | ||
| 16 | file://purple-OE-branding-25.patch \ | 12 | file://purple-OE-branding-25.patch \ |
| 17 | file://pidgin-cross-python-265.patch \ | 13 | file://pidgin-cross-python-265.patch \ |
| 18 | " | 14 | " |
| 19 | 15 | ||
| 20 | SRC_URI[md5sum] = "10a4a69d077893f6dd3438cd8af94e81" | 16 | SRC_URI[md5sum] = "14e0f5cfb2ed065e4dc80391a806ac76" |
| 21 | SRC_URI[sha256sum] = "dc362ed8577f623eea4554a79e917073aa726825074fea402f2e515f0f51f319" | 17 | SRC_URI[sha256sum] = "2c7523f0fefe89749c03b2b738ab9f7bd186da435be4762f1487eee31e77ffdd" |
| 22 | 18 | ||
| 23 | EXTRA_OECONF = " \ | 19 | EXTRA_OECONF = " \ |
| 24 | --enable-vv \ | 20 | --enable-vv \ |
