mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 20:39:39 +01:00
Otherwise it ends up with this error | configure: error: Package requirements (dbus-glib-1 >= 0.82 | gobject-2.0 >= 2.14 | gthread-2.0 >= 2.14 | ) were not met: | | No package 'gobject-2.0' found | No package 'gthread-2.0' found | | Consider adjusting the PKG_CONFIG_PATH environment variable if you | installed software in a non-standard prefix. (From OE-Core rev: c4eb1e7659a7f9f2791f1fdd5b0b22e7a5e423b0) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.3 KiB
BlitzBasic
32 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "ConsoleKit is a framework for defining and tracking users, login sessions, and seats."
|
|
HOMEPAGE="http://www.freedesktop.org/wiki/Software/ConsoleKit"
|
|
BUGTRACKER="https://bugs.freedesktop.org/buglist.cgi?query_format=specific&product=ConsoleKit"
|
|
|
|
PR = "r4"
|
|
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
|
|
file://src/main.c;endline=21;md5=0a994e09769780220163255d8f9071c3"
|
|
|
|
DEPENDS = "glib-2.0 dbus polkit ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
|
|
|
|
inherit gnome
|
|
|
|
SRC_URI = "http://www.freedesktop.org/software/ConsoleKit/dist/ConsoleKit-${PV}.tar.bz2"
|
|
SRC_URI[md5sum] = "f2657f93761206922d558471a936fbc3"
|
|
SRC_URI[sha256sum] = "43e0780c53078e125efcec3f847e484dc3533e49b408ce6a0ab1b223686b9c38"
|
|
|
|
|
|
S = "${WORKDIR}/ConsoleKit-${PV}"
|
|
|
|
EXTRA_OECONF = "--with-systemdsystemunitdir=${base_libdir}/systemd/system/ \
|
|
${@base_contains('DISTRO_FEATURES', 'pam', '--enable-pam-module --with-pam-module-dir=${libdir}/security', '--disable-pam-module', d)} \
|
|
"
|
|
|
|
FILES_${PN} += "${libdir}/ConsoleKit ${base_libdir} ${datadir}/dbus-1 ${datadir}/PolicyKit ${datadir}/polkit*"
|
|
|
|
PACKAGES =+ "pam-plugin-ck-connector"
|
|
FILES_pam-plugin-ck-connector += "${libdir}/security/*.so"
|
|
RDEPENDS_pam-plugin-ck-connector += "${PN}"
|
|
|