mirror of
https://git.yoctoproject.org/poky
synced 2026-04-01 05:02:21 +02:00
* Fixes the following error at configure time: |checking for TOOLS... no |configure: error: Package requirements (x11 >= 1.0.0 | glib-2.0 >= 2.14 |) were not met: | |No package 'x11' found (From OE-Core rev: e5c60517a22997bb966bbe21a2d7cbc99a97b42b) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
39 lines
1.6 KiB
BlitzBasic
39 lines
1.6 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 = "r8"
|
|
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
|
|
file://src/main.c;endline=21;md5=0a994e09769780220163255d8f9071c3"
|
|
|
|
POLKIT = "polkit"
|
|
POLKIT_libc-uclibc = ""
|
|
POLKITCONF = ""
|
|
POLKITCONF_libc-uclibc = "--disable-policykit"
|
|
|
|
DEPENDS = "glib-2.0 dbus ${POLKIT} ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} virtual/libx11"
|
|
RDEPENDS_${PN} += "base-files"
|
|
|
|
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 = "${POLKITCONF} --with-systemdsystemunitdir=${base_libdir}/systemd/system/ \
|
|
${@base_contains('DISTRO_FEATURES', 'pam', '--enable-pam-module --with-pam-module-dir=${base_libdir}/security', '--disable-pam-module', d)} \
|
|
"
|
|
|
|
FILES_${PN} += "${localstatedir}/log/ConsoleKit ${libdir}/ConsoleKit ${base_libdir} ${datadir}/dbus-1 ${datadir}/PolicyKit ${datadir}/polkit*"
|
|
FILES_${PN}-dbg += "${base_libdir}/security/.debug"
|
|
|
|
PACKAGES =+ "pam-plugin-ck-connector"
|
|
FILES_pam-plugin-ck-connector += "${base_libdir}/security/*.so"
|
|
RDEPENDS_pam-plugin-ck-connector += "${PN}"
|
|
|