Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Oct 2010 01:53:26 -0400 (EDT)
From:      Sahil Tandon <sahil@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        brooks@FreeBSD.org
Subject:   ports/151675: [PATCH] sysutils/sge62: fix MASTER_SITES:n usage 
Message-ID:  <20101024055326.80A7217179@spartan.hamla.org>
Resent-Message-ID: <201010240600.o9O60NEH010508@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         151675
>Category:       ports
>Synopsis:       [PATCH] sysutils/sge62: fix MASTER_SITES:n usage
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Oct 24 06:00:23 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Sahil Tandon
>Release:        FreeBSD 9.0-CURRENT i386
>Organization:
>Environment:

	
>Description:
Fix MASTER_SITES:n usage so that the ":n" postfix is added 
to *all* elements of MASTER_SITE_LOCAL, not just the final
one.  To observe the difference, run the following command
while inside the port's dir before and after applying the
patch:

% make -V MASTER_SITES
>How-To-Repeat:
	
>Fix:

	



--- sge62.diff begins here ---
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/sysutils/sge62/Makefile,v
retrieving revision 1.50
diff -u -r1.50 Makefile
--- Makefile	31 May 2010 02:01:07 -0000	1.50
+++ Makefile	24 Oct 2010 05:49:45 -0000
@@ -10,8 +10,8 @@
 PORTREVISION=	2
 CATEGORIES=	sysutils parallel
 MASTER_SITES=	http://gridengine.sunsource.net/files/documents/7/197/:src \
-		${MASTER_SITE_LOCAL}:src
-MASTER_SITE_SUBDIR=	brooks
+		${MASTER_SITE_LOCAL:S/$/:src/}
+MASTER_SITE_SUBDIR=	brooks/:src
 DISTNAME=	ge-V${SGE_RELEASE:S/.//}_TAG-src
 DISTFILES=	${DISTNAME}.tar.gz:src
 EXTRACT_ONLY=	${DISTNAME}.tar.gz
--- sge62.diff ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20101024055326.80A7217179>