summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1994-09-01 16:01:34 +0000
committerjkh <jkh@FreeBSD.org>1994-09-01 16:01:34 +0000
commitf3fa32d21995b9d7355a1db56df8528395cc679a (patch)
tree39cb35e67d8a299bafdf51c599415ddc97c74d5b /share
parent1bc615af7122a0c9e210954c604756d510343720 (diff)
downloadFreeBSD-src-f3fa32d21995b9d7355a1db56df8528395cc679a.zip
FreeBSD-src-f3fa32d21995b9d7355a1db56df8528395cc679a.tar.gz
Geeze, what was I thinking again? Replace all references to:
${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} With simply `${DISTFILE}' which defaults to the above. This lets you easily name distribution files that don't cooperate with any rational naming syntax. Similarly, make a variable called ${PKGFILE} which fills the same purpose for packages. Just trying to make this thing really really general to suit every need. Now I need somebody to figure out how to make the extract target auto-fetch things from ${HOME_LOCATION} with ncftp *if* ncftp is installed and it looks possible to reach the foreign site. That will take some fancy footwork, but would be slick. I've changed this too so that HOME_LOCATION is no longer set by default, allowing you to do an .if defined(..) check for it. The extract rule now does this too. Submitted by: jkh
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.port.mk22
1 files changed, 15 insertions, 7 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk
index 9d144a5..8e2e8cb 100644
--- a/share/mk/bsd.port.mk
+++ b/share/mk/bsd.port.mk
@@ -1,7 +1,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
-# $Id: bsd.port.mk,v 1.21 1994/08/28 14:41:34 jkh Exp $
+# $Id: bsd.port.mk,v 1.22 1994/08/30 16:39:27 adam Exp $
#
# Supported Variables and their behaviors:
@@ -96,7 +96,12 @@ PKG_CMD?= pkg_create
PKG_ARGS?= -v -c ${PKGDIR}/COMMENT -d ${PKGDIR}/DESCR -f ${PKGDIR}/PLIST
PKG_SUFX?= .tgz
-HOME_LOCATION?= <original site unknown>
+# Set no default value for this so we can easily detect its absence.
+#HOME_LOCATION?= <original site unknown>
+
+# Derived names so that they're easily overridable.
+DISTFILE?= ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}
+PKGFILE?= ${PACKAGES}/${DISTNAME}${PKG_SUFX}
.MAIN: all
all: extract configure build
@@ -254,8 +259,7 @@ bundle: pre-bundle
echo ">> WARNING: This source has been configured and may"; \
echo ">> produce a tainted distfile!"; \
fi
- ${BUNDLE_CMD} ${BUNDLE_ARGS} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} \
- ${DISTNAME}
+ ${BUNDLE_CMD} ${BUNDLE_ARGS} ${DISTFILE} ${DISTNAME}
.endif
.if !target(pre-extract)
@@ -274,14 +278,18 @@ ${EXTRACT_COOKIE}:
@echo "===> Extracting for ${DISTNAME}"
@rm -rf ${WRKDIR}
@mkdir -p ${WRKDIR}
- @if [ ! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ]; then \
- echo ">> Sorry, can't find: ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}"; \
+ @if [ ! -f ${DISTFILE} ]; then \
+ echo ">> Sorry, can't find: ${DISTFILE}"; \
echo ">> Please obtain this file from:"; \
+.if defined(HOME_LOCATION)
echo ">> ${HOME_LOCATION}"; \
+.else
+ echo ">> <original site unknown>"; \
+.endif
echo ">>before proceeding."; \
exit 1; \
fi
- @${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}
+ @${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTFILE}
@touch -f ${EXTRACT_COOKIE}
.endif
OpenPOWER on IntegriCloud