3058ace76f
bsd.pkg.mk. They didn't actually need to be defined in bsd.prefs.mk, just somewhere before the "main" bsd.<phase>.mk files were included. This moves some conditional (?=) definitions back into bsd.pkg.mk so they won't conflict with any conditional definitions in package Makefiles. This should fix the "checksum" problems in lang/php-gd as noted here: http://mail-index.netbsd.org/pkgsrc-users/2006/06/05/0012.html where EXTRACT_SUFX had the wrong value due to the order in while *.mk files were included.
24 lines
821 B
Makefile
24 lines
821 B
Makefile
# $NetBSD: bsd.fetch-vars.mk,v 1.2 2006/06/06 15:28:52 jlam 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.
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
# The default DISTDIR is currently set in bsd.prefs.mk.
|
|
#DISTDIR?= ${PKGSRCDIR}/distfiles
|
|
|
|
_DISTDIR= ${DISTDIR}/${DIST_SUBDIR}
|
|
DISTFILES?= ${DISTNAME}${EXTRACT_SUFX}
|