diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2013-04-29 12:54:38 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-05-03 13:32:04 +0200 |
commit | 2491bccb6d0dbfe998ef441028767661d532f34c (patch) | |
tree | 15d09c1ec33859053aa9cd5055dad4a250253187 /meta-gnome/recipes-gnome | |
parent | 204f3463f62ddc58eac23184a83a1f2f53c716e0 (diff) | |
download | meta-openembedded-2491bccb6d0dbfe998ef441028767661d532f34c.tar.gz |
gnome-power-manager: fix configure
* configure looks for libgnome-keyring (there is no option --disable-keyring)
* to have a daemon put gnome-keyring to RRECOMMENDS.
Error message was:
| Package gnome-keyring-1 was not found in the pkg-config search path.
| Perhaps you should add the directory containing `gnome-keyring-1.pc'
| to the PKG_CONFIG_PATH environment variable
| No package 'gnome-keyring-1' found
| configure:13934: $? = 1
| configure:13952: result: no
| No package 'gnome-keyring-1' found
| configure:13978: error: Package requirements (
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-gnome/recipes-gnome')
-rw-r--r-- | meta-gnome/recipes-gnome/gnome-power-manager/gnome-power-manager_2.32.0.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-gnome/recipes-gnome/gnome-power-manager/gnome-power-manager_2.32.0.bb b/meta-gnome/recipes-gnome/gnome-power-manager/gnome-power-manager_2.32.0.bb index cc4c0c478..c11d6ea69 100644 --- a/meta-gnome/recipes-gnome/gnome-power-manager/gnome-power-manager_2.32.0.bb +++ b/meta-gnome/recipes-gnome/gnome-power-manager/gnome-power-manager_2.32.0.bb | |||
@@ -2,9 +2,10 @@ DESCRIPTION = "Power management daemon" | |||
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" |
4 | 4 | ||
5 | PR = "r2" | 5 | PR = "r3" |
6 | 6 | ||
7 | DEPENDS = "glib-2.0 gtk+ gconf gnome-keyring dbus dbus-glib libnotify libwnck cairo libunique xrandr virtual/libx11 libxrender libcanberra upower" | 7 | DEPENDS = "glib-2.0 gtk+ gconf libgnome-keyring dbus dbus-glib libnotify libwnck cairo libunique xrandr virtual/libx11 libxrender libcanberra upower" |
8 | RRECOMMENDS_${PN} += "gnome-keyring" | ||
8 | 9 | ||
9 | inherit gnome | 10 | inherit gnome |
10 | 11 | ||
@@ -14,7 +15,6 @@ SRC_URI[archive.md5sum] = "9a08e85dce3ffb90775f15e3bda4adda" | |||
14 | SRC_URI[archive.sha256sum] = "17fa301bf7e133285c0e054ae3be2b0f690c48f59b09f67e04d6ed339b330476" | 15 | SRC_URI[archive.sha256sum] = "17fa301bf7e133285c0e054ae3be2b0f690c48f59b09f67e04d6ed339b330476" |
15 | 16 | ||
16 | EXTRA_OECONF = " --disable-scrollkeeper \ | 17 | EXTRA_OECONF = " --disable-scrollkeeper \ |
17 | --disable-keyring \ | ||
18 | --disable-applets \ | 18 | --disable-applets \ |
19 | --x-includes=${STAGING_INCDIR} \ | 19 | --x-includes=${STAGING_INCDIR} \ |
20 | --x-libraries=${STAGING_LIBDIR} \ | 20 | --x-libraries=${STAGING_LIBDIR} \ |