From owner-freebsd-ports Tue Feb 13 0:52:57 2001 Delivered-To: freebsd-ports@freebsd.org Received: from katrien.skystream.nl (katrien.skystream.nl [195.7.130.55]) by hub.freebsd.org (Postfix) with ESMTP id 9575A37B491 for ; Tue, 13 Feb 2001 00:52:52 -0800 (PST) Received: from dyn.dailup.c227128245.isd.to (dyn.dailup.c227128245.isd.to [213.227.128.245]) by katrien.skystream.nl (8.11.1/8.11.0) with ESMTP id f1D8oSb14773 for ; Tue, 13 Feb 2001 09:50:28 +0100 Received: (qmail 4878 invoked by uid 1000); 13 Feb 2001 08:55:09 -0000 From: "Andre Goeree" Date: Tue, 13 Feb 2001 09:55:09 +0100 To: ports@freebsd.org Subject: Re: ports/25058: x11-wm/filerunner exits when using configuration menu. Message-ID: <20010213095509.A4847@mandark.attica.home> Reply-To: abgoeree@uwnet.nl References: <20010213083306.1991.qmail@mandark.attica.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010213083306.1991.qmail@mandark.attica.home>; from abgoeree@uwnet.nl on Tue, Feb 13, 2001 at 08:33:06AM -0000 X-Sender: abgoeree@uwnet.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 13, 2001 at 08:33:06AM -0000, Andre Goeree wrote: > > >Number: 25058 > >Category: ports > >Synopsis: x11-wm/filerunner exits when using configuration menu. > >Confidential: no > >Severity: serious > >Priority: medium > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Tue Feb 13 00:40:01 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: Andre Goeree > >Release: FreeBSD 4.2-STABLE i386 > >Organization: > >Environment: > > > > >Description: > When using any of the "Edit * [Color|Font]" choices on the > configuration menu, fr (filerunner) displays the error: > > "couldn't execute "/usr/local/lib/FileRunner/frcolor": permission denied" > > The program then asks the user to prepare a bug report or see > the stack trace and exits. > > >How-To-Repeat: > Startup filerunner and choose one of the above mentioned > menu choices on the configuration menu. > > >Fix: > root@mandark# pwd > /usr/ports/x11-fm/filerunner > root@mandark$ diff -u Makefile.orig Makefile > --- Makefile.orig Mon Feb 5 22:00:51 2001 > +++ Makefile Tue Feb 13 09:25:12 2001 > @@ -26,8 +26,9 @@ > do-install: > @ ${MKDIR} ${PREFIX}/lib/FileRunner/bitmaps > @ ${INSTALL_SCRIPT} ${WRKSRC}/fr ${PREFIX}/lib/FileRunner > + @ ${INSTALL_SCRIPT} ${WRKSRC}/frcolor ${PREFIX}/lib/frcolor > @ ${LN} -sf ${PREFIX}/lib/FileRunner/fr ${PREFIX}/bin > -.for file in FAQ HISTORY QuickStart.txt Tips.txt Users_Guide.txt chmod.tcl cmd.tcl config.tcl dialog_about.tcl ext.so font.tcl frcolor frftp ftp.tcl http.tcl tclIndex > +.for file in FAQ HISTORY QuickStart.txt Tips.txt Users_Guide.txt chmod.tcl cmd.tcl config.tcl dialog_about.tcl ext.so font.tcl frftp ftp.tcl http.tcl tclIndex > @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/lib/FileRunner > .endfor > .for map in cross.bit frterm.bit larger.bit left.bit max.bit pgdown.bit pgup.bit right.bit smaller.bit toggle.bit tree.bit up.bit update.bit xterm.bit > > root@mandark# pwd > /usr/ports/x11-fm/filerunner/work/FileRunner-2.5 > diff -u frcolor.orig frcolor > --- frcolor.orig Tue Jun 9 23:55:32 1998 > +++ frcolor Tue Feb 13 00:37:25 2001 > @@ -1,6 +1,6 @@ > #!/bin/sh > # the next line restarts using wish \ > -exec wish8.0 "$0" "$@" > +exec wish8.2 "$0" "$@" > > # tcolor -- > # This script implements a simple color editor, where you can > > >Release-Note: > >Audit-Trail: > >Unformatted: Oops, a typo (haven't finished my coffee yet;). frcolor gets installed in the *wrong* directory. Sorry about that, diff should be: root@mandark# pwd /usr/ports/x11-fm/filerunner root@mandark# diff -u Makefile.orig Makefile --- Makefile.orig Mon Feb 5 22:00:51 2001 +++ Makefile Tue Feb 13 09:43:13 2001 @@ -26,8 +26,9 @@ do-install: @ ${MKDIR} ${PREFIX}/lib/FileRunner/bitmaps @ ${INSTALL_SCRIPT} ${WRKSRC}/fr ${PREFIX}/lib/FileRunner + @ ${INSTALL_SCRIPT} ${WRKSRC}/frcolor ${PREFIX}/lib/FileRunner/frcolor @ ${LN} -sf ${PREFIX}/lib/FileRunner/fr ${PREFIX}/bin -.for file in FAQ HISTORY QuickStart.txt Tips.txt Users_Guide.txt chmod.tcl cmd.tcl config.tcl dialog_about.tcl ext.so font.tcl frcolor frftp ftp.tcl http.tcl tclIndex +.for file in FAQ HISTORY QuickStart.txt Tips.txt Users_Guide.txt chmod.tcl cmd.tcl config.tcl dialog_about.tcl ext.so font.tcl frftp ftp.tcl http.tcl tclIndex @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/lib/FileRunner .endfor .for map in cross.bit frterm.bit larger.bit left.bit max.bit pgdown.bit pgup.bit right.bit smaller.bit toggle.bit tree.bit up.bit update.bit xterm.bit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message