1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00

Eliminate a few lurking bogons - this is almost close to being right!

This commit is contained in:
Jordan K. Hubbard 1994-09-11 12:01:05 +00:00
parent abb15ce2c3
commit a34c88dd09
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=77

View File

@ -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