# 2.2.8 # *** old/src/share/mk/bsd.port.mk Sun Apr 20 18:10:48 1997 # --- new/src/share/mk/bsd.port.mk Sun Apr 20 20:18:56 1997 # *************** # *** 525,530 **** # --- 525,539 ---- # PATCH_SITES:= ${MASTER_SITE_OVERRIDE} ${PATCH_SITES} # .endif # # + # If NEARBY_DISTFILES_SITE is set, search nearby Internet site first, # + # before going further afield. # + # Use this to first access a local ftp archive, also use it if you or your # + # internet access provider pay more for international than local packets. # + .if defined(NEARBY_DISTFILES_SITE) # + MASTER_SITES:= ${NEARBY_DISTFILES_SITE}/ ${MASTER_SITES} # + PATCH_SITES:= ${NEARBY_DISTFILES_SITE}/ ${MASTER_SITES} # + .endif # + # # Search CDROM first if mounted, symlink instead of copy if # # FETCH_SYMLINK_DISTFILES is set # .if exists(/cdrom/ports/distfiles) # 3.2 *** old/src/share/mk/bsd.port.mk.~1~ Tue Jan 26 04:41:29 1999 --- new/src/share/mk/bsd.port.mk Fri May 21 21:41:45 1999 *************** *** 1,2 **** --- 1,13 ---- PORTSDIR?= /usr/ports .include "${PORTSDIR}/Mk/bsd.port.mk" + + # Following bit may be redundant. + # If NEARBY_DISTFILES_SITE is set, search nearby Internet site first, + # before going further afield. + # Use this to first access a local ftp archive, also use it if you or your + # internet access provider pay more for international than local packets. + .if defined(NEARBY_DISTFILES_SITE) + MASTER_SITES:= ${NEARBY_DISTFILES_SITE}/ ${MASTER_SITES} + PATCH_SITES:= ${NEARBY_DISTFILES_SITE}/ ${MASTER_SITES} + .endif +