summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1995-03-28 02:16:21 +0000
committerSatoshi Asami <asami@FreeBSD.org>1995-03-28 02:16:21 +0000
commit62cb09752006f131d7eed000c26ded3ddf505452 (patch)
tree0682a35ca3b2ddfc9f5037114a6842e8fe257477 /net
parentUpdate to patchlevel 3 (diff)
Tryed to update to use latest PATCHFILES hack in bsd.port.mk but I
can't get it to work because the patch is on a non-anon ftp site and it needs its own ncftprc file. Hmm.... Changed PATCHFILES -> PATCH_FILES so it works for now.
Notes
Notes: svn path=/head/; revision=1215
Diffstat (limited to 'net')
-rw-r--r--net/dgd/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/dgd/Makefile b/net/dgd/Makefile
index 116b52736837..9db1d795aa27 100644
--- a/net/dgd/Makefile
+++ b/net/dgd/Makefile
@@ -7,7 +7,8 @@
DISTNAME= dgd-1.0.9
DISTFILES= ${DISTNAME}.tar.gz
-PATCHFILES= 1.0.9-1.0.9.1.gz
+# changed from PATCHFILES so it won't confuse bsd.port.mk
+PATCH_FILES= 1.0.9-1.0.9.1.gz
.if defined(MASTER_SITE_OVERRIDE)
PATCHSITE:= ${MASTER_SITE_OVERRIDE}
.else
@@ -27,7 +28,7 @@ pre-fetch:
&& mv ${DISTNAME}.tar.gz ${DISTDIR}; \
fi
.if defined(MASTER_SITE_OVERRIDE)
- @for file in ${PATCHFILES}; do \
+ @for file in ${PATCH_FILES}; do \
if [ ! -f ${DISTDIR}/${DISTNAME}/$$file ]; then \
echo ">> Fetching patch $$file from remote site..."; \
${NCFTP} ${NCFTPFLAGS} ${PATCHSITE}${DISTNAME}/$$file \
@@ -35,7 +36,7 @@ pre-fetch:
fi \
done
.else
- @for file in ${PATCHFILES}; do \
+ @for file in ${PATCH_FILES}; do \
if [ ! -f ${DISTDIR}/${DISTNAME}/$$file ]; then \
echo ">> Fetching patch $$file from remote site..."; \
${NCFTP} ${NCFTPFLAGS} ${PATCHSITE}patches/$$file \