dff6721b5a
patch provided by Kouichirou Hiratsuka in PR pkg/26573 changes: Many bugfixes and better support for the freedesktop.org EWMH spec. - set titlebar_uses_system_font = false (it was ugly) - make naming for "move a window"/"move the window"/"move window" more consistent (fixes #142235) - Add trailing quotes to keybinding explanation text. - support for EWMH update counter spec & add compensation events when events are ignored. (fixes #143333 and #109362) - Fix focus bugs: remove race condition on window close/minimize (#131582), make focus choice consistent for each focus mode (#135810), choose correct focus window when "un-showing the desktop (#144900), make sure correct window is focused when using the workspace switcher (#120100). - Use meta_topic instead of meta_warning when failing to connect to a session manager. (fixes #136218) - Make meta_window_delete take a timestamp, and be sure to pass it one. - Add support for EWMH _NET_WM_USER_TIME spec. This enables part of preventing focus stealing. (bug #118372) Also fix bug with windows not being focused on unminimizing caused by original patch. (also bug #118372) - Fix some support for EWMH hints, and fix USER_TIME support to include the DEMANDS_ATTENTION hint. Also includes some code for implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but this is disabled pending feature thaw.
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.32 2004/08/07 17:07:15 recht Exp $
|
|
#
|
|
|
|
DISTNAME= metacity-2.8.2
|
|
CATEGORIES= wm x11 gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/metacity/2.8/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://www.gnome.org/softwaremap/projects/Metacity/
|
|
COMMENT= GNOME-compliant window manager
|
|
|
|
BUILD_USES_MSGFMT= YES
|
|
|
|
USE_BUILDLINK3= YES
|
|
USE_DIRS+= gnome2-1.5
|
|
USE_PKGLOCALEDIR= YES
|
|
USE_X11= YES
|
|
USE_GNU_TOOLS+= make
|
|
GNU_CONFIGURE= YES
|
|
USE_LIBTOOL= YES
|
|
|
|
PKGCONFIG_OVERRIDE= src/libmetacity-private.pc.in
|
|
|
|
GCONF2_SCHEMAS= metacity.schemas
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !exists(${X11BASE}/lib/libXinerama.so)
|
|
CONFIGURE_ARGS+= --disable-xinerama
|
|
.endif
|
|
|
|
.include "../../devel/GConf2/schemas.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/libglade2/buildlink3.mk"
|
|
.include "../../devel/pango/buildlink3.mk"
|
|
.include "../../devel/pkgconfig/buildlink3.mk"
|
|
.include "../../net/ORBit2/buildlink3.mk"
|
|
.include "../../textproc/intltool/buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../x11/startup-notification/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|