diff options
author | asami <asami@FreeBSD.org> | 1995-06-26 15:06:59 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-06-26 15:06:59 +0800 |
commit | 7cf413b425bc583356d3bb8ffbb982f6db938946 (patch) | |
tree | c74645a5d1b845794914aa7f1d13acb77580bbfb | |
parent | 95fdac015e9119977389686f7e34384acd30fddf (diff) | |
download | freebsd-ports-gnome-7cf413b425bc583356d3bb8ffbb982f6db938946.tar.gz freebsd-ports-gnome-7cf413b425bc583356d3bb8ffbb982f6db938946.tar.zst freebsd-ports-gnome-7cf413b425bc583356d3bb8ffbb982f6db938946.zip |
Use
ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/
as our distribution point for distfiles and patches. Other than
cosmetic changes (freebsd.cdrom.com -> ftp.freebsd.org), the
omission of "ports" is important. I would like to move this
directory completely out of the ports tree (on the ftp site),
so that people who do "get ports.tar.gz" won't get a bogus distfiles
-> ../distfiles symlink (which will make "make fetch" fail).
Sometime around the 2.1 release, the distfiles link will be deleted.
-rw-r--r-- | Mk/bsd.port.mk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 88c18fb7d9b2..9e55e0612bf0 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.168 1995/06/26 00:30:48 asami Exp $ +# $Id: bsd.port.mk,v 1.169 1995/06/26 07:01:20 asami Exp $ # # Please view me with 4 column tabs! @@ -18,10 +18,10 @@ # PREFIX - Where to install things in general (default: /usr/local). # MASTER_SITES - Primary location(s) for distribution files if not found # locally (default: -# ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles) +# ftp://ftp.freebsd.org/pub/FreeBSD/distfiles) # PATCH_SITES - Primary location(s) for distributed patch files # (see PATCHFILES below) if not found locally (default: -# ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles) +# ftp://ftp.freebsd.org/pub/FreeBSD/distfiles) # # MASTER_SITE_OVERRIDE - If set, override the MASTER_SITES setting with this # value. @@ -292,14 +292,14 @@ INSTALL_TARGET?= install # If the user has this set, go to the FreeBSD respository for everything. .if defined(MASTER_SITE_FREEBSD) -MASTER_SITE_OVERRIDE= ftp://freebsd.cdrom.com/pub/FreeBSD/FreeBSD-current/ports/distfiles/ +MASTER_SITE_OVERRIDE= ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/ .endif # I guess we're in the master distribution business! :) As we gain mirror # sites for distfiles, add them to this list. .if !defined(MASTER_SITE_OVERRIDE) -MASTER_SITES+= ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/ports/distfiles/ -PATCH_SITES+= ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/ports/distfiles/${PATCH_PRFX} +MASTER_SITES+= ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/ +PATCH_SITES+= ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/${PATCH_PRFX} .else MASTER_SITES= ${MASTER_SITE_OVERRIDE} PATCH_SITES= ${MASTER_SITE_OVERRIDE}${PATCH_PRFX} |