490760d2f4
fetch.
89 lines
2.8 KiB
Makefile
89 lines
2.8 KiB
Makefile
# $NetBSD: bsd.fetch-vars.mk,v 1.13 2009/03/20 16:23:48 joerg Exp $
|
|
#
|
|
# This Makefile fragment is included separately by bsd.pkg.mk and
|
|
# defines some variables which must be defined earlier than where
|
|
# bsd.fetch.mk is included.
|
|
#
|
|
# The following variables may be set by the user:
|
|
#
|
|
# DISTDIR is the top-level directory into which all original
|
|
# distribution files are fetched.
|
|
#
|
|
# DIST_PATH is a list of directories, separated by colons, in which
|
|
# the distribution files are looked up, additionally to DISTDIR.
|
|
# No files will ever be created in these directories.
|
|
#
|
|
# The following variables may be set in a package Makefile:
|
|
#
|
|
# DIST_SUBDIR is the subdirectory of ${DISTDIR} in which the original
|
|
# distribution files for the package are fetched.
|
|
#
|
|
# DISTFILES is the list of distribution files that are fetched.
|
|
#
|
|
# System-provided variables:
|
|
#
|
|
# DEFAULT_DISTFILES
|
|
# The default value for DISTFILES. This can be used when you need
|
|
# more than the usual distfiles.
|
|
#
|
|
|
|
_VARGROUPS+= fetch
|
|
_USER_VARS.fetch= DISTDIR DIST_PATH
|
|
_PKG_VARS.fetch= MASTER_SITES DIST_SUBDIR DISTFILES
|
|
_SYS_VARS.fetch= DEFAULT_DISTFILES
|
|
|
|
# The default DISTDIR is currently set in bsd.prefs.mk.
|
|
#DISTDIR?= ${PKGSRCDIR}/distfiles
|
|
|
|
_DISTDIR= ${DISTDIR}/${DIST_SUBDIR}
|
|
DEFAULT_DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
|
DISTFILES?= ${DEFAULT_DISTFILES}
|
|
|
|
# File lists, defined early to allow tool dependencies.
|
|
ALLFILES?= ${DISTFILES} ${PATCHFILES}
|
|
ALLFILES:= ${ALLFILES:O:u} # remove duplicates
|
|
CKSUMFILES?= ${ALLFILES}
|
|
.for __tmp__ in ${IGNOREFILES}
|
|
CKSUMFILES:= ${CKSUMFILES:N${__tmp__}}
|
|
.endfor
|
|
|
|
# List of all files, with ${DIST_SUBDIR} in front. Used for fetch and checksum.
|
|
.if defined(DIST_SUBDIR) && !empty(DIST_SUBDIR)
|
|
_CKSUMFILES?= ${CKSUMFILES:@.f.@${DIST_SUBDIR}/${.f.}@}
|
|
_DISTFILES?= ${DISTFILES:@.f.@${DIST_SUBDIR}/${.f.}@}
|
|
_IGNOREFILES?= ${IGNOREFILES:@.f.@${DIST_SUBDIR}/${.f.}@}
|
|
_PATCHFILES?= ${PATCHFILES:@.f.@${DIST_SUBDIR}/${.f.}@}
|
|
.else
|
|
_CKSUMFILES?= ${CKSUMFILES}
|
|
_DISTFILES?= ${DISTFILES}
|
|
_IGNOREFILES?= ${IGNOREFILES}
|
|
_PATCHFILES?= ${PATCHFILES}
|
|
.endif
|
|
_ALLFILES?= ${_DISTFILES} ${_PATCHFILES}
|
|
_ALLFILES:= ${_ALLFILES:O:u} # remove duplicates
|
|
|
|
_BUILD_DEFS+= _DISTFILES _PATCHFILES
|
|
|
|
# When mirroring distfiles which others may fetch, only fetch the
|
|
# distfiles if it is allowed to be re-distributed freely. Also,
|
|
# suppress some bootstrap-depends output.
|
|
#
|
|
.if make(mirror-distfiles)
|
|
NO_SKIP= # defined
|
|
_BOOTSTRAP_VERBOSE= # defined
|
|
.endif
|
|
|
|
.if !empty(_CKSUMFILES) && defined(FAILOVER_FETCH)
|
|
USE_TOOLS+= digest:bootstrap
|
|
.endif
|
|
|
|
_FETCH_TOOLS.ftp= ftp
|
|
_FETCH_TOOLS.fetch= fetch
|
|
_FETCH_DEPENDS.wget= wget-[0-9]*:../../net/wget
|
|
_FETCH_DEPENDS.curl= curl-[0-9]*:../../www/curl
|
|
_FETCH_TOOLS.manual= false
|
|
|
|
.if !empty(_ALLFILES)
|
|
USE_TOOLS+= ${_FETCH_TOOLS.${FETCH_USING}:C/$/:bootstrap/}
|
|
BOOTSTRAP_DEPENDS+= ${_FETCH_DEPENDS.${FETCH_USING}}
|
|
.endif
|