All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Kanavin <alexander.kanavin@linux.intel.com>
To: openembedded-devel@lists.openembedded.org
Subject: [PATCH 22/38] polkit: fix gobject introspection support
Date: Wed,  9 Mar 2016 17:05:38 +0200	[thread overview]
Message-ID: <647e1731ebab6b4e788a40bb12842528ec064714.1457535831.git.alexander.kanavin@linux.intel.com> (raw)
In-Reply-To: <cover.1457535831.git.alexander.kanavin@linux.intel.com>
In-Reply-To: <cover.1457535831.git.alexander.kanavin@linux.intel.com>

Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
---
 meta-oe/recipes-extended/polkit/polkit_0.113.bb | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/meta-oe/recipes-extended/polkit/polkit_0.113.bb b/meta-oe/recipes-extended/polkit/polkit_0.113.bb
index 8a613ef..aab4f54 100644
--- a/meta-oe/recipes-extended/polkit/polkit_0.113.bb
+++ b/meta-oe/recipes-extended/polkit/polkit_0.113.bb
@@ -5,9 +5,9 @@ LICENSE = "LGPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=155db86cdbafa7532b41f390409283eb \
                     file://src/polkit/polkit.h;beginline=1;endline=20;md5=0a8630b0133176d0504c87a0ded39db4"
 
-DEPENDS = "expat glib-2.0 intltool-native gobject-introspection-stub mozjs"
+DEPENDS = "expat glib-2.0 intltool-native mozjs"
 
-inherit autotools gtk-doc pkgconfig useradd systemd
+inherit autotools gtk-doc pkgconfig useradd systemd gobject-introspection
 
 PACKAGECONFIG = "${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)} \
                  ${@base_contains('DISTRO_FEATURES','systemd','systemd','consolekit',d)}"
@@ -25,18 +25,20 @@ SRC_URI = "http://www.freedesktop.org/software/polkit/releases/polkit-${PV}.tar.
 SRC_URI[md5sum] = "4b77776c9e4f897dcfe03b2c34198edf"
 SRC_URI[sha256sum] = "e1c095093c654951f78f8618d427faf91cf62abdefed98de40ff65eca6413c81"
 
-EXTRA_OECONF = "--with-os-type=moblin --disable-man-pages --disable-introspection"
+EXTRA_OECONF = "--with-os-type=moblin --disable-man-pages"
+
+do_compile_prepend () {
+	export GIR_EXTRA_LIBS_PATH="${B}/src/polkit/.libs"
+}
 
 PACKAGES =+ "${PN}-examples"
 
-FILES_${PN} += " \
+FILES_${PN}_append = " \
     ${libdir}/${BPN}-1 \
     ${nonarch_libdir}/${BPN}-1 \
     ${datadir}/dbus-1 \
     ${datadir}/${BPN}-1 \
 "
-FILES_${PN}-dbg += "${libdir}/${BPN}-1/.debug \
-                    ${nonarch_libdir}/${BPN}-1/.debug"
 
 FILES_${PN}-examples = "${bindir}/*example*"
 
-- 
2.7.0



  parent reply	other threads:[~2016-03-09 15:10 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-09 15:05 [PATCH 00/38] Initial gobject introspection support for meta-openembedded Alexander Kanavin
2016-03-09 15:05 ` [PATCH 01/38] evolution-data-server: fix gobject introspection Alexander Kanavin
2016-03-09 15:05 ` [PATCH 02/38] evince: update to 3.18.2 Alexander Kanavin
2016-03-09 15:05 ` [PATCH 03/38] gnome-bluetooth: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 04/38] gnome-desktop: remove pygtk dependency Alexander Kanavin
2016-03-09 15:05 ` [PATCH 05/38] gnumeric: fix gobject introspection support Alexander Kanavin
2016-03-09 15:05 ` [PATCH 06/38] libgsf: fix gobject introspection Alexander Kanavin
2016-03-09 15:05 ` [PATCH 07/38] libwnck: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 08/38] libxklavier: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 09/38] goffice: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 10/38] tracker: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 11/38] gupnp: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 12/38] rygel: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 13/38] media-service-demo: remove the recipe Alexander Kanavin
2016-03-09 15:05 ` [PATCH 14/38] python-gst: remove the 0.10 recipe Alexander Kanavin
2016-03-10 14:25   ` Martin Jansa
2016-03-10 16:02     ` Burton, Ross
2016-03-10 16:13       ` Martin Jansa
2016-03-10 16:51         ` Burton, Ross
2016-03-10 17:08           ` Martin Jansa
2016-03-11  9:27             ` Burton, Ross
2016-03-15 14:07     ` Alexander Kanavin
2016-03-09 15:05 ` [PATCH 15/38] gstreamer-0.10: disable gobject introspection Alexander Kanavin
2016-03-09 15:05 ` [PATCH 16/38] libmediaart: fix " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 17/38] bluez4: use real introspection instead of legacy pygobject Alexander Kanavin
2016-03-09 15:05 ` [PATCH 18/38] modemmanager: fix vala support Alexander Kanavin
2016-03-09 15:05 ` [PATCH 19/38] networkmanager: fix introspection and " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 20/38] telepathy-glib: fix gobject introspection support Alexander Kanavin
2016-03-09 15:05 ` [PATCH 21/38] libgee: " Alexander Kanavin
2016-03-09 15:05 ` Alexander Kanavin [this message]
2016-03-09 15:05 ` [PATCH 23/38] gtkextra: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 24/38] libunique: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 25/38] babl: update to 0.1.16 Alexander Kanavin
2016-03-09 15:05 ` [PATCH 26/38] gegl: update to 0.3.4 Alexander Kanavin
2016-03-09 15:05 ` [PATCH 27/38] gimp: accept newer versins of babl and gegl Alexander Kanavin
2016-03-09 15:05 ` [PATCH 28/38] omgps: remove the recipe Alexander Kanavin
2016-03-09 15:05 ` [PATCH 29/38] poppler: fix gobject introspection Alexander Kanavin
2016-03-09 15:05 ` [PATCH 30/38] udisks2: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 31/38] upower: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 32/38] python-dbusmock: use real introspection instead on legacy pygobject Alexander Kanavin
2016-03-09 15:05 ` [PATCH 33/38] gnome-menus: fix gobject introspection Alexander Kanavin
2016-03-09 15:05 ` [PATCH 34/38] libgdata: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 35/38] libgtop: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 36/38] nautilus: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 37/38] network-manager-applet: " Alexander Kanavin
2016-03-09 15:05 ` [PATCH 38/38] gnome-panel: " Alexander Kanavin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=647e1731ebab6b4e788a40bb12842528ec064714.1457535831.git.alexander.kanavin@linux.intel.com \
    --to=alexander.kanavin@linux.intel.com \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.