Deleted Added
full compact
bsd.port.mk (36188) bsd.port.mk (36264)
1#-*- mode: Fundamental; tab-width: 4; -*-
2# ex:ts=4
3#
4# $Id: bsd.port.mk,v 1.274 1998/05/04 04:01:26 steve Exp $
5# $NetBSD: $
6#
7# bsd.port.mk - 940820 Jordan K. Hubbard.
8# This file is in the public domain.

--- 256 unchanged lines hidden (view full) ---

265# a major can of worms.
266
267# Get the architecture
268ARCH!= uname -m
269
270# Get the operating system type
271OPSYS!= uname -s
272
1#-*- mode: Fundamental; tab-width: 4; -*-
2# ex:ts=4
3#
4# $Id: bsd.port.mk,v 1.274 1998/05/04 04:01:26 steve Exp $
5# $NetBSD: $
6#
7# bsd.port.mk - 940820 Jordan K. Hubbard.
8# This file is in the public domain.

--- 256 unchanged lines hidden (view full) ---

265# a major can of worms.
266
267# Get the architecture
268ARCH!= uname -m
269
270# Get the operating system type
271OPSYS!= uname -s
272
273.include <bsd.locale.mk>
274
275.if exists(${.CURDIR}/../Makefile.inc)
276.include "${.CURDIR}/../Makefile.inc"
277.endif
278
279.if exists(${.CURDIR}/Makefile.${ARCH}-${OPSYS})
280.include "${.CURDIR}/Makefile.${ARCH}-${OPSYS}"
281.elif exists(${.CURDIR}/Makefile.${OPSYS})
282.include "${.CURDIR}/Makefile.${OPSYS}"

--- 302 unchanged lines hidden (view full) ---

585 ftp://ftp.blaze.net.au/pub/kde/%SUBDIR%/ \
586 ftp://ftp.dataplus.se/pub/linux/kde/%SUBDIR%/ \
587 ftp://ftp.caldera.com/pub/mirrors/kde/%SUBDIR%/
588
589# Empty declaration to avoid "variable MASTER_SITES recursive" error
590MASTER_SITES?=
591PATCH_SITES?=
592
273.if exists(${.CURDIR}/../Makefile.inc)
274.include "${.CURDIR}/../Makefile.inc"
275.endif
276
277.if exists(${.CURDIR}/Makefile.${ARCH}-${OPSYS})
278.include "${.CURDIR}/Makefile.${ARCH}-${OPSYS}"
279.elif exists(${.CURDIR}/Makefile.${OPSYS})
280.include "${.CURDIR}/Makefile.${OPSYS}"

--- 302 unchanged lines hidden (view full) ---

583 ftp://ftp.blaze.net.au/pub/kde/%SUBDIR%/ \
584 ftp://ftp.dataplus.se/pub/linux/kde/%SUBDIR%/ \
585 ftp://ftp.caldera.com/pub/mirrors/kde/%SUBDIR%/
586
587# Empty declaration to avoid "variable MASTER_SITES recursive" error
588MASTER_SITES?=
589PATCH_SITES?=
590
593# If the user has this set, try it first
594.if defined(NEAR_SITE_LIST)
595MASTER_SITES:= ${NEAR_SITE_LIST} ${MASTER_SITES}
596.endif
597
598# To avoid double-slashes
599MASTER_SITE_SUBDIR?= .
600PATCH_SITE_SUBDIR?= .
601
602# Substitute subdirectory names
603MASTER_SITES:= ${MASTER_SITES:S/%SUBDIR%/${MASTER_SITE_SUBDIR}/}
604PATCH_SITES:= ${PATCH_SITES:S/%SUBDIR%/${PATCH_SITE_SUBDIR}/}
605

--- 1215 unchanged lines hidden ---
591# To avoid double-slashes
592MASTER_SITE_SUBDIR?= .
593PATCH_SITE_SUBDIR?= .
594
595# Substitute subdirectory names
596MASTER_SITES:= ${MASTER_SITES:S/%SUBDIR%/${MASTER_SITE_SUBDIR}/}
597PATCH_SITES:= ${PATCH_SITES:S/%SUBDIR%/${PATCH_SITE_SUBDIR}/}
598

--- 1215 unchanged lines hidden ---