mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 09:46:38 +01:00
This patch goes through the OE-Core recipes and marks those which use autotools
but don't support a separate build directory (${S} != ${B}). A new class,
autotools-brokensep is used for this purpose.
This doesn't introduce any change in behaviour in its own right.
(From OE-Core rev: 006b8a7808a58713af16c326dc37d07765334b12)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
554 B
PHP
22 lines
554 B
PHP
SUMMARY = "Clutter based UI widget library"
|
|
LICENSE = "LGPLv2.1"
|
|
|
|
inherit clutter autotools-brokensep
|
|
|
|
DEPENDS = "clutter-1.0 dbus-glib gdk-pixbuf"
|
|
|
|
SRC_URI = "http://source.clutter-project.org/sources/mx/${@get_verdir("${PV}")}/mx-${PV}.tar.xz"
|
|
|
|
EXTRA_OECONF = "--disable-introspection \
|
|
--disable-gtk-doc \
|
|
--disable-gtk-widgets \
|
|
--with-dbus \
|
|
--with-winsys=none \
|
|
--without-clutter-imcontext \
|
|
--without-clutter-gesture \
|
|
--without-startup-notification \
|
|
--without-glade \
|
|
"
|
|
|
|
FILES_${PN} += "${datadir}"
|