From owner-freebsd-gnome@FreeBSD.ORG Tue Nov 25 08:18:33 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00C0A16A4CE for ; Tue, 25 Nov 2003 08:18:33 -0800 (PST) Received: from conure.mail.pas.earthlink.net (conure.mail.pas.earthlink.net [207.217.120.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4868B43FBD for ; Tue, 25 Nov 2003 08:18:32 -0800 (PST) (envelope-from welchsm@earthlink.net) Received: from bigbird.psp.pas.earthlink.net ([207.217.78.244]) by conure.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1AOftX-0004f4-00; Tue, 25 Nov 2003 08:18:31 -0800 Message-ID: <12675899.1069777110965.JavaMail.root@bigbird.psp.pas.earthlink.net> Date: Tue, 25 Nov 2003 10:18:30 -0600 (GMT-06:00) From: Sean Welch To: freebsd-gnome@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Earthlink Zoo Mail 1.0 Subject: Metacity with Expocity X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sean Welch List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2003 16:18:33 -0000 I just saw this article: http://slashdot.org/articles/03/11/25/0330208.shtml?tid=131&tid=179&tid=185&tid=189&tid=190 an took a look at the patch here: http://www.pycage.de/download/expocity-11-24-03.diff Figuring to give it a try, I got it to compile and install but the keystroke that is supposed to activate it (Alt-Tab) doesn't do anything now. Perhaps someone else might have a better idea what to do with it and how to track the problem down??? It did compile cleanly... At any rate, here is the process I used. 1) cd /usr/ports/x11-wm/metacity 2) make extract && make patch 3) cd work && ln -s metacity-2.6.3 metacity 4) patch < expocity-11-24-03.diff 5) mv expocity* metacity/src 6) rm metacity && patch < Makefile.in_patch 7) cd ../ && make && make install I made up Makefile.in_patch myself and its contents are (yes, those are supposed to be tabs before the "\" symbols but this webmail client won't let me type/paste tabs): --- metacity-2.6.3/src/Makefile.in.orig Tue Nov 25 09:47:38 2003 +++ metacity-2.6.3/src/Makefile.in Tue Nov 25 09:49:19 2003 @@ -154,6 +154,8 @@ errors.h \ eventqueue.c \ eventqueue.h \ + expocity.c \ + expocity.h \ fixedtip.c \ fixedtip.h \ frame.c \ @@ -323,7 +325,7 @@ metacity_OBJECTS = async-getprop.$(OBJEXT) bell.$(OBJEXT) \ constraints.$(OBJEXT) core.$(OBJEXT) delete.$(OBJEXT) display.$(OBJEXT) \ draw-workspace.$(OBJEXT) effects.$(OBJEXT) errors.$(OBJEXT) \ -eventqueue.$(OBJEXT) fixedtip.$(OBJEXT) frame.$(OBJEXT) \ +eventqueue.$(OBJEXT) expocity.$(OBJEXT) fixedtip.$(OBJEXT) frame.$(OBJEXT) \ frames.$(OBJEXT) gradient.$(OBJEXT) group.$(OBJEXT) \ group-props.$(OBJEXT) iconcache.$(OBJEXT) keybindings.$(OBJEXT) \ main.$(OBJEXT) menu.$(OBJEXT) metaaccellabel.$(OBJEXT) place.$(OBJEXT) \