summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Stolz <vs@FreeBSD.org>2005-12-08 14:02:20 +0000
committerVolker Stolz <vs@FreeBSD.org>2005-12-08 14:02:20 +0000
commitca9f7390f7b1401e64ea64f5e7efc1b8a2170c62 (patch)
tree4525651ad006e1d5dbe80f67026195093ac168ae
parentff07e4f2da1c3b7560b742b52fdd69534084d023 (diff)
downloadfreebsd-ports-ca9f7390f7b1401e64ea64f5e7efc1b8a2170c62.zip
Fix IGNORE[a]nce if distfile has not yet been downloaded
-rw-r--r--devel/uppaal/Makefile13
1 files changed, 2 insertions, 11 deletions
diff --git a/devel/uppaal/Makefile b/devel/uppaal/Makefile
index 70ca446a204b..c2ab0d19a233 100644
--- a/devel/uppaal/Makefile
+++ b/devel/uppaal/Makefile
@@ -31,27 +31,18 @@ MANCOMPRESSED= no
RESTRICTED= "Downloading requires completion of a license agreement"
.include <bsd.port.pre.mk>
-TO_BE_FETCHED=
-.for f in ${DISTFILES}
-.if ! exists (${DISTDIR}/${DIST_SUBDIR}/${f})
-TO_BE_FETCHED+= ${f}
-.endif
-.endfor
do-fetch:
-.if ${TO_BE_FETCHED} != ""
+.if ! exists (${DISTDIR}/${DIST_SUBDIR}/uppaal.zip)
ECHO_MSG=/usr/bin/printf
IGNORE= :\n\n\
------------------------------------------------------------------\n\
Downloading this software requires completion of a licence\n\
agreement, which may be found at: http://www.uppaal.com\n\
\n\
-Please download the _latest_ versions of the following files into\n\
+Please download the _latest_ version of 'uppaal.zip' into\n\
${DISTDIR}/${DIST_SUBDIR}\n\
\n
-.for f in ${TO_BE_FETCHED}
-IGNORE+= ${f}\n
-.endfor
IGNORE+=------------------------------------------------------------------\n\n
.endif