summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1994-09-11 12:01:05 +0000
committerjkh <jkh@FreeBSD.org>1994-09-11 12:01:05 +0000
commit0922a574ef776c51c7d901ae704d9ed05d2ed872 (patch)
tree98a5b63f4ce4055988022a4e096502a96d0a7bec /share
parent0756c91ab2b790085874966b970f15314710683f (diff)
downloadFreeBSD-src-0922a574ef776c51c7d901ae704d9ed05d2ed872.zip
FreeBSD-src-0922a574ef776c51c7d901ae704d9ed05d2ed872.tar.gz
Eliminate a few lurking bogons - this is almost close to being right!
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.port.mk17
1 files changed, 13 insertions, 4 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk
index 4b1178e..a58cbb5 100644
--- a/share/mk/bsd.port.mk
+++ b/share/mk/bsd.port.mk
@@ -1,10 +1,13 @@
+# -*- mode: Fundamental; tab-width: 4; -*-
+#
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
-# $Id: bsd.port.mk,v 1.29 1994/09/09 06:21:43 jkh Exp $
+# $Id: bsd.port.mk,v 1.30 1994/09/10 22:26:47 jkh Exp $
#
# Please view me with 4 column tabs!
+
# Supported Variables and their behaviors:
#
# Variables that typically apply to all ports:
@@ -92,6 +95,11 @@ SCRIPTDIR?= ${.CURDIR}/scripts
FILESDIR?= ${.CURDIR}/files
PKGDIR?= ${.CURDIR}/pkg
+.if exists(${PORTSDIR}/../Makefile.inc)
+.include "${PORTSDIR}/../Makefile.inc"
+.endif
+
+
# Change these if you'd prefer to keep the cookies someplace else.
EXTRACT_COOKIE?= ${.CURDIR}/.extract_done
CONFIGURE_COOKIE?= ${.CURDIR}/.configure_done
@@ -276,11 +284,12 @@ fetch: pre-fetch
if [ ! -d ${DISTDIR} ]; then mkdir -p ${DISTDIR}; fi \
cd ${DISTDIR}; \
if ${NCFTP} ${NCFTPFLAGS} ${MASTER_SITE}/$$file; then \
- ${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTFILE}; \
+ echo ">> $$file Fetched!" ; \
else \
- echo ">> Couldn't fetch it - please retreive $$file manually from ${HOME_LOCATION} and try again."; \
+ echo ">> Couldn't fetch it - please try to manually retreive";\
+ echo ">> ${HOME_LOCATION}/$$file and try again."; \
exit 1; \
- fi; \
+ fi \
fi \
done
.endif
OpenPOWER on IntegriCloud