From owner-freebsd-ports@FreeBSD.ORG Wed Dec 29 02:27:41 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B10416A4CE for ; Wed, 29 Dec 2004 02:27:41 +0000 (GMT) Received: from smtp802.mail.sc5.yahoo.com (smtp802.mail.sc5.yahoo.com [66.163.168.181]) by mx1.FreeBSD.org (Postfix) with SMTP id DD32A43D39 for ; Wed, 29 Dec 2004 02:27:40 +0000 (GMT) (envelope-from krinklyfig@spymac.com) Received: from unknown (HELO smogmonster.com) (jtinnin@pacbell.net@64.173.26.30 with login) by smtp802.mail.sc5.yahoo.com with SMTP; 29 Dec 2004 02:27:40 -0000 From: Joshua Tinnin To: freebsd-ports@freebsd.org Date: Tue, 28 Dec 2004 18:27:39 -0800 User-Agent: KMail/1.7.2 References: <200412281805.19287.krinklyfig@spymac.com> In-Reply-To: <200412281805.19287.krinklyfig@spymac.com> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_cYh0BooRG6kXFBG" Message-Id: <200412281827.40414.krinklyfig@spymac.com> cc: gnome@freebsd.org cc: erich@freebsd.org Subject: Re: Problem updating gimp-gnome because of devel/desktop-file-utils update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Dec 2004 02:27:41 -0000 --Boundary-00=_cYh0BooRG6kXFBG Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Tuesday 28 December 2004 06:05 pm, Joshua Tinnin wrote: > After having updated devel/desktop-file-utils to 0.10, trying to > upgrade gimp-gnome-2.2.0_2,1 returns the following error at the end > of the install: > > gmake[2]: Leaving directory > `/usr/ports/graphics/gimp/work/gimp-2.2.0' gmake[1]: Leaving > directory `/usr/ports/graphics/gimp/work/gimp-2.2.0' > /usr/X11R6/bin/update-desktop-database:No such file or directory *** > Error code 1 > > Stop in /usr/ports/graphics/gimp. > > > This is because the path is now: > /usr/local/bin/update-desktop-database > > Not sure how many other ports might be affected. Here's a patch that should fix that problem for gimp. - jt --Boundary-00=_cYh0BooRG6kXFBG Content-Type: text/x-diff; charset="us-ascii"; name="gimp-patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="gimp-patch" --- Makefile.bak Tue Dec 28 18:16:20 2004 +++ Makefile Tue Dec 28 18:16:33 2004 @@ -113,7 +113,7 @@ .if defined(GNOME_ENABLED) post-install: - @${X11BASE}/bin/update-desktop-database + @${LOCALBASE}/bin/update-desktop-database .endif .include --Boundary-00=_cYh0BooRG6kXFBG--