Date: Tue, 13 Feb 2001 09:55:09 +0100 From: "Andre Goeree" <abgoeree@uwnet.nl> To: ports@freebsd.org Subject: Re: ports/25058: x11-wm/filerunner exits when using configuration menu. Message-ID: <20010213095509.A4847@mandark.attica.home> In-Reply-To: <20010213083306.1991.qmail@mandark.attica.home>; from abgoeree@uwnet.nl on Tue, Feb 13, 2001 at 08:33:06AM -0000 References: <20010213083306.1991.qmail@mandark.attica.home>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010213095509.A4847>