91 lines
3.7 KiB
PHP
91 lines
3.7 KiB
PHP
SUMMARY = "Modern 3D graphics API with associated utility APIs"
|
|
HOMEPAGE = "http://wiki.clutter-project.org/wiki/Cogl"
|
|
LICENSE = "MIT"
|
|
|
|
inherit clutter
|
|
|
|
DEPENDS = "glib-2.0 gdk-pixbuf"
|
|
PACKAGES =+ "${PN}-examples \
|
|
libcogl libcogl-dev \
|
|
libcogl-gles2 libcogl-gles2-dev \
|
|
libcogl-pango libcogl-pango-dev \
|
|
libcogl-path libcogl-path-dev"
|
|
AUTOTOOLS_AUXDIR = "${S}/build"
|
|
|
|
# Extra DEPENDS for PACKAGECONFIG
|
|
EDEPENDS_GL = "virtual/libgl libdrm"
|
|
EDEPENDS_GLES2 = "virtual/libgles2"
|
|
EDEPENDS_KMS = "libdrm virtual/egl"
|
|
EDEPENDS_EGL = "virtual/egl"
|
|
EDEPENDS_X11 = "virtual/libx11 libxcomposite libxfixes libxi libxrandr"
|
|
EDEPENDS_WAYLAND = "virtual/mesa wayland"
|
|
|
|
# Extra RDEPENDS for PACKAGECONFIG
|
|
# This has to be explictly listed, because cogl dlopens the backends
|
|
ERDEPENDS_GL = "libgl"
|
|
ERDEPENDS_GLES2 = "libgles2"
|
|
|
|
# GLESv1 is rarely tested, so disable it
|
|
EXTRA_OECONF += "--disable-introspection \
|
|
--enable-examples-install \
|
|
--enable-debug \
|
|
--disable-gles1 \
|
|
--disable-cairo \
|
|
"
|
|
|
|
# OpenGL/GLX
|
|
PACKAGECONFIG[glx] = "--enable-gl --enable-glx,--disable-gl --disable-glx,${EDEPENDS_GL} ${EDEPENDS_X11},${ERDEPENDS_GL}"
|
|
|
|
# GLESv2
|
|
PACKAGECONFIG[gles2] = "--enable-gles2,--disable-gles2,${EDEPENDS_GLES2}, ${ERDEPENDS_GLES2}"
|
|
|
|
# EGL backends
|
|
PACKAGECONFIG[egl-kms] = "--enable-kms-egl-platform,--disable-kms-egl-platform,${EDEPENDS_KMS}"
|
|
PACKAGECONFIG[egl-null] = "--enable-null-egl-platform,--disable-null-egl-platform"
|
|
PACKAGECONFIG[egl-x11] = "--enable-xlib-egl-platform,--disable-xlib-egl-platform,${EDEPENDS_X11} ${EDEPENDS_EGL}"
|
|
PACKAGECONFIG[egl-wayland] = "--enable-wayland-egl-platform,--disable-wayland-egl-platform,${EDEPENDS_WAYLAND}"
|
|
|
|
# Wayland (server-side)
|
|
PACKAGECONFIG[wayland-server] = "--enable-wayland-egl-server,--disable-wayland-egl-server,${EDEPENDS_WAYLAND}"
|
|
|
|
# Support rendering text directly with Pango
|
|
PACKAGECONFIG[cogl-pango] = "--enable-cogl-pango,--disable-cogl-pango,pango"
|
|
|
|
# Respect the DISTRO_FEATURES to pull in GLX or Wayland as appropriate by
|
|
# default.
|
|
PACKAGECONFIG ??= "cogl-pango gles2 \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'egl-wayland', '', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'glx egl-x11', '', d)} \
|
|
"
|
|
|
|
|
|
FILES_${PN}-examples = "${bindir}/* ${datadir}/cogl/examples-data/*"
|
|
FILES_libcogl = "${libdir}/libcogl${SOLIBS}"
|
|
FILES_libcogl-dev = "${includedir}/cogl/cogl \
|
|
${libdir}/libcogl${SOLIBSDEV} \
|
|
${libdir}/libcogl.la \
|
|
${libdir}/pkgconfig/cogl-1.0.pc \
|
|
${libdir}/pkgconfig/cogl-2.0-experimental.pc \
|
|
${libdir}/pkgconfig/cogl-gl-1.0.pc"
|
|
FILES_libcogl-gles2 = "${libdir}/libcogl-gles2${SOLIBS}"
|
|
FILES_libcogl-gles2-dev = "${includedir}/cogl/cogl-gles2 \
|
|
${libdir}/libcogl-gles2${SOLIBSDEV} \
|
|
${libdir}/libcogl-gles2.la \
|
|
${libdir}/pkgconfig/cogl-gles2-*.pc"
|
|
FILES_libcogl-pango = "${libdir}/libcogl-pango${SOLIBS}"
|
|
FILES_libcogl-pango-dev = "${includedir}/cogl/cogl-pango \
|
|
${libdir}/libcogl-pango${SOLIBSDEV} \
|
|
${libdir}/libcogl-pango.la \
|
|
${libdir}/pkgconfig/cogl-pango-*.pc"
|
|
|
|
FILES_libcogl-path = "${libdir}/libcogl-path${SOLIBS}"
|
|
FILES_libcogl-path-dev = "${includedir}/cogl/cogl-path \
|
|
${libdir}/libcogl-path${SOLIBSDEV} \
|
|
${libdir}/libcogl-path.la \
|
|
${libdir}/pkgconfig/cogl-path-*.pc"
|
|
|
|
# For backwards compatibility after Debian-renaming
|
|
RPROVIDES_libcogl = "cogl-1.0"
|
|
RCONFLICTS_libcogl = "cogl-1.0"
|
|
RREPLACES_libcogl = "cogl-1.0"
|