mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
pidgin: use pkg-config instead of hardcoded paths or python-config
* also fix following QA warning: WARNING: pidgin-2.10.12-r0 do_package: QA Issue: pidgin: Files/directories were installed but not shipped in any package: /usr/share/appdata /usr/share/appdata/pidgin.appdata.xml Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. pidgin: 2 installed and not shipped files. [installed-vs-shipped] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
committed by
Armin Kuster
parent
4a5b269b20
commit
ebe5fb297e
@@ -1,27 +1,34 @@
|
|||||||
From 428836ba7f9048970626ef0d6b805107f7c52d33 Mon Sep 17 00:00:00 2001
|
Use pkg-config instead of ${PYTHON}-config to find python
|
||||||
From: Herrie <github.com@herrie.org>
|
|
||||||
Date: Thu, 5 May 2016 13:33:29 +0200
|
|
||||||
Subject: [PATCH] Updated python patch
|
|
||||||
|
|
||||||
---
|
diff -uNr pidgin-2.10.12.orig/configure.ac pidgin-2.10.12/configure.ac
|
||||||
configure.ac | 6 +++---
|
--- pidgin-2.10.12.orig/configure.ac 2016-01-01 00:19:40.000000000 +0100
|
||||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
+++ pidgin-2.10.12/configure.ac 2016-05-05 16:55:13.258945925 +0200
|
||||||
|
@@ -1585,20 +1585,15 @@
|
||||||
diff --git a/configure.ac b/configure.ac
|
dnl Check for Python headers (currently useful only for libgnt)
|
||||||
index 94ea8cf..2285adb 100644
|
dnl (Thanks to XChat)
|
||||||
--- a/configure.ac
|
|
||||||
+++ b/configure.ac
|
|
||||||
@@ -1587,9 +1587,9 @@ dnl (Thanks to XChat)
|
|
||||||
if test "x$enable_consoleui" = "xyes" -a ! -z "$PYTHON" -a x"$PYTHON" != x"no" ; then
|
if test "x$enable_consoleui" = "xyes" -a ! -z "$PYTHON" -a x"$PYTHON" != x"no" ; then
|
||||||
AC_MSG_CHECKING(for Python compile flags)
|
- AC_MSG_CHECKING(for Python compile flags)
|
||||||
if test -f ${PYTHON}-config; then
|
- if test -f ${PYTHON}-config; then
|
||||||
- PY_CFLAGS=`${PYTHON}-config --includes`
|
- PY_CFLAGS=`${PYTHON}-config --includes`
|
||||||
- PY_LIBS=`${PYTHON}-config --libs`
|
- PY_LIBS=`${PYTHON}-config --libs`
|
||||||
- AC_DEFINE(USE_PYTHON, [1], [Define if python headers are available.])
|
- AC_DEFINE(USE_PYTHON, [1], [Define if python headers are available.])
|
||||||
+ m4_pattern_allow([^PKG_CONFIG_SYSROOT_DIR$])
|
- AC_MSG_RESULT(ok)
|
||||||
+ PY_LIBS="-L$PKG_CONFIG_SYSROOT_DIR/usr/lib/python$PY_VERSION/config -lpython$PY_VERSION"
|
- else
|
||||||
+ PY_CFLAGS="-I$PKG_CONFIG_SYSROOT_DIR/usr/include/python$PY_VERSION" AC_DEFINE(USE_PYTHON, [1], [Define if python headers are available.])
|
- AC_MSG_RESULT([Cannot find ${PYTHON}-config])
|
||||||
AC_MSG_RESULT(ok)
|
- PY_CFLAGS=""
|
||||||
else
|
- PY_LIBS=""
|
||||||
AC_MSG_RESULT([Cannot find ${PYTHON}-config])
|
- fi
|
||||||
|
+ AC_MSG_CHECKING(for Python compile flags)
|
||||||
|
+ PKG_CHECK_MODULES(PY, python, [
|
||||||
|
+ AC_SUBST(PY_CFLAGS)
|
||||||
|
+ AC_SUBST(PY_LIBS)
|
||||||
|
+ ], [
|
||||||
|
+ AC_MSG_RESULT(no)
|
||||||
|
+ AC_MSG_ERROR([Can't find python])
|
||||||
|
+ ])
|
||||||
|
fi
|
||||||
|
-AC_SUBST(PY_CFLAGS)
|
||||||
|
-AC_SUBST(PY_LIBS)
|
||||||
|
|
||||||
|
dnl #######################################################################
|
||||||
|
dnl # Check for Mono support
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ FILES_${PN} = "${bindir} ${datadir}/${PN} ${libdir}/${PN}/*.so \
|
|||||||
${datadir}/applications"
|
${datadir}/applications"
|
||||||
RRECOMMENDS_${PN} = "${PN}-data libpurple-plugin-ssl-gnutls libpurple-protocol-irc libpurple-protocol-xmpp"
|
RRECOMMENDS_${PN} = "${PN}-data libpurple-plugin-ssl-gnutls libpurple-protocol-irc libpurple-protocol-xmpp"
|
||||||
|
|
||||||
FILES_${PN}-data = "${datadir}/pixmaps ${datadir}/sounds ${datadir}/icons"
|
FILES_${PN}-data = "${datadir}/pixmaps ${datadir}/sounds ${datadir}/icons ${datadir}/appdata"
|
||||||
FILES_${PN}-dev += "${libdir}/${PN}/*.la"
|
FILES_${PN}-dev += "${libdir}/${PN}/*.la"
|
||||||
|
|
||||||
PACKAGES_DYNAMIC += "^libpurple-protocol-.* ^libpurple-plugin-.* ^pidgin-plugin-.* ^finch-plugin-.*"
|
PACKAGES_DYNAMIC += "^libpurple-protocol-.* ^libpurple-plugin-.* ^pidgin-plugin-.* ^finch-plugin-.*"
|
||||||
|
|||||||
Reference in New Issue
Block a user