Subject: pkg/34423: security/sfs - update MASTER_SITES -> fix fetch
To: None <pkg-manager@netbsd.org, gnats-admin@netbsd.org,>
From: Shaun Amott <shaun@inerd.com>
List: pkgsrc-bugs
Date: 08/30/2006 15:10:01
>Number:         34423
>Category:       pkg
>Synopsis:       security/sfs - update MASTER_SITES -> fix fetch
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pkg-manager
>State:          open
>Class:          change-request
>Submitter-Id:   net
>Arrival-Date:   Wed Aug 30 15:10:00 +0000 2006
>Originator:     Shaun Amott
>Release:        NetBSD 3.0.1
>Organization:
>Environment:
System: NetBSD 3.0.1
Architecture: i386
Machine: i386
>Description:

The SFS port has a needlessly long MASTER_SITE, which currently appears
to be inaccessible. It should be replaced with the standard version
listed on the port's homepage.

${VARBASE} can also be utilised.

>How-To-Repeat:

>Fix:

-----Begin sfs.diff-----
Index: sfs/Makefile
===================================================================
RCS file: /cvsroot/pkgsrc/security/sfs/Makefile,v
retrieving revision 1.25
diff -u -r1.25 Makefile
--- sfs/Makefile	23 Apr 2006 00:12:42 -0000	1.25
+++ sfs/Makefile	30 Aug 2006 14:50:53 -0000
@@ -4,7 +4,7 @@
 DISTNAME=		sfs-0.7.2
 PKGREVISION=		5
 CATEGORIES=		net security
-MASTER_SITES=		http://www.fs.net/sfs/@new-york.lcs.mit.edu,u83s4uk49nt8rmp4uwmt2exvz6d3cavh/pub/sfswww/dist/
+MASTER_SITES=		http://www.fs.net/sfswww/dist/
 
 MAINTAINER=		mike@ethmoid.org
 HOMEPAGE=		http://www.fs.net/
@@ -34,7 +34,7 @@
 
 .include "../../mk/bsd.prefs.mk"
 
-SFSDIR?=		/var/sfs
+SFSDIR?=		${VARBASE}/sfs
 SFS_ROOT=		${SFSDIR}
 
 OWN_DIRS_PERMS=		${SFS_ROOT} sfs sfs 555
-----End sfs.diff-----