From glewis@misty.eyesbeyond.com  Tue Nov  4 05:41:48 2008
Return-Path: <glewis@misty.eyesbeyond.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 3BAF6106564A
	for <FreeBSD-gnats-submit@freebsd.org>; Tue,  4 Nov 2008 05:41:48 +0000 (UTC)
	(envelope-from glewis@misty.eyesbeyond.com)
Received: from misty.eyesbeyond.com (gerbercreations.com [71.39.140.16])
	by mx1.freebsd.org (Postfix) with ESMTP id 0632E8FC0A
	for <FreeBSD-gnats-submit@freebsd.org>; Tue,  4 Nov 2008 05:41:47 +0000 (UTC)
	(envelope-from glewis@misty.eyesbeyond.com)
Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1])
	by misty.eyesbeyond.com (8.14.2/8.14.2) with ESMTP id mA459q6E039814;
	Mon, 3 Nov 2008 21:09:53 -0800 (PST)
	(envelope-from glewis@misty.eyesbeyond.com)
Received: (from glewis@localhost)
	by misty.eyesbeyond.com (8.14.2/8.14.2/Submit) id mA459qQX039813;
	Mon, 3 Nov 2008 21:09:52 -0800 (PST)
	(envelope-from glewis)
Message-Id: <200811040509.mA459qQX039813@misty.eyesbeyond.com>
Date: Mon, 3 Nov 2008 21:09:52 -0800 (PST)
From: Greg Lewis <glewis@freebsd.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc: simon@olofsson.de
Subject: [PATCH] lang/bsh: Fix wrapper script
X-Send-Pr-Version: 3.113
X-GNATS-Notify: simon@olofsson.de

>Number:         128576
>Category:       ports
>Synopsis:       [PATCH] lang/bsh: Fix wrapper script
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    glewis
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Nov 04 05:50:01 UTC 2008
>Closed-Date:    Tue Nov 18 22:27:47 UTC 2008
>Last-Modified:  Tue Nov 18 22:30:02 UTC 2008
>Originator:     Greg Lewis
>Release:        FreeBSD 7.0-RELEASE-p3 i386
>Organization:
>Environment:
System: FreeBSD misty.eyesbeyond.com 7.0-RELEASE-p3 FreeBSD 7.0-RELEASE-p3 #0: Mon Jul 28 22:03:45 PDT 2008
>Description:
The bsh port installs the JAR file in JAVAJARDIR but the wrapper script
looks for it in DATADIR.  This change fixes that mismatch.

Port maintainer (simon@olofsson.de) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- bsh-2.0.b4_5.patch begins here ---
Index: files/bsh.sh.in
===================================================================
RCS file: /var/fcvs/ports/lang/bsh/files/bsh.sh.in,v
retrieving revision 1.3
diff -u -r1.3 bsh.sh.in
--- files/bsh.sh.in	23 Jun 2008 00:45:15 -0000	1.3
+++ files/bsh.sh.in	4 Nov 2008 05:03:09 -0000
@@ -2,4 +2,4 @@
 #
 # $FreeBSD: ports/lang/bsh/files/bsh.sh.in,v 1.3 2008/06/23 00:45:15 lippe Exp $
 
-JAVA_VERSION="%%JAVA_VERSION%%" exec "%%LOCALBASE%%/bin/java" -jar "%%DATADIR%%/%%JARNAME%%" "$@"
+JAVA_VERSION="%%JAVA_VERSION%%" exec "%%LOCALBASE%%/bin/java" -jar "%%JAVAJARDIR%%/%%JARNAME%%" "$@"
--- bsh-2.0.b4_5.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->glewis 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Tue Nov 4 05:50:11 UTC 2008 
Responsible-Changed-Why:  
Submitter has GNATS access (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=128576 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Tue Nov 4 05:50:15 UTC 2008 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=128576 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: simon@olofsson.de
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/128576: [PATCH] lang/bsh: Fix wrapper script
Date: Tue, 4 Nov 2008 05:50:13 UT

 Maintainer of lang/bsh,
 
 Please note that PR ports/128576 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/128576
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: Simon Olofsson <simon@olofsson.de>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/128576: [PATCH] lang/bsh: Fix wrapper script
Date: Tue, 04 Nov 2008 10:13:14 +0100

 Thanks for the catch.
 Obviously the installation location changed in the previous commits, but the 
 wrapper script wasn't adjusted.
 I approve the patch. 
 
 Simon

From: Simon Olofsson <simon@olofsson.de>
To: bug-followup@FreeBSD.org
Cc: glewis@freebsd.org
Subject: Re: ports/128576: [PATCH] lang/bsh: Fix wrapper script
Date: Tue, 18 Nov 2008 09:31:30 +0100

 Greg, 
 
 could you please commit this, as the patch is important for users of bsh. 
 
 Thanks,
 Simon
State-Changed-From-To: feedback->closed 
State-Changed-By: glewis 
State-Changed-When: Tue Nov 18 22:27:46 UTC 2008 
State-Changed-Why:  
Sorry, committed now. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=128576 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/128576: commit references a PR
Date: Tue, 18 Nov 2008 22:27:36 +0000 (UTC)

 glewis      2008-11-18 22:27:26 UTC
 
   FreeBSD ports repository
 
   Modified files:
     lang/bsh/files       bsh.sh.in 
   Log:
   . Fix the location the wrapper script looks for bsh.jar in.
   
   PR:             128576
   Approved by:    maintainer
   
   Revision  Changes    Path
   1.4       +2 -2      ports/lang/bsh/files/bsh.sh.in
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
