metacity_3.32.0.bb 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. SECTION = "x11/wm"
  2. SUMMARY = "Metacity is the boring window manager for the adult in you"
  3. LICENSE = "GPLv2+"
  4. LIC_FILES_CHKSUM = "file://COPYING;md5=b4cce53560b8e619ffa7c830fb8761aa \
  5. file://src/include/main.h;endline=24;md5=72148ede07a6dadd01de6a882d20a9ad"
  6. PE = "1"
  7. DEPENDS = "gsettings-desktop-schemas startup-notification \
  8. gnome-doc-utils gdk-pixbuf-native \
  9. gtk+3 glib-2.0 libcanberra libgtop intltool-native"
  10. inherit autotools gettext gnomebase features_check
  11. # depends on startup-notification which depends on virtual/libx11
  12. REQUIRED_DISTRO_FEATURES = "x11"
  13. SRC_URI = "git://github.com/GNOME/metacity.git;branch=master \
  14. file://0001-drop-zenity-detection.patch \
  15. "
  16. S = "${WORKDIR}/git"
  17. SRCREV = "bf1bfbadf47eff97703df17e95b15168e2034222"
  18. EXTRA_OECONF += "--disable-xinerama"
  19. PACKAGECONFIG ?= ""
  20. # enable as neccessary until new warnings are dealt with
  21. PACKAGECONFIG[werror] = "--enable-Werror,--disable-Werror,,"
  22. do_configure_prepend() {
  23. cd ${S}
  24. aclocal --install || exit 1
  25. autoreconf --verbose --force --install -Wno-portability || exit 1
  26. cd -
  27. }
  28. FILES_${PN} += "${datadir}/themes ${datadir}/gnome-control-center ${datadir}/gnome"
  29. RDEPENDS_${PN} += "gsettings-desktop-schemas"