diff options
author | lawrance <lawrance@FreeBSD.org> | 2005-04-22 18:16:18 +0800 |
---|---|---|
committer | lawrance <lawrance@FreeBSD.org> | 2005-04-22 18:16:18 +0800 |
commit | 4036185a6daeb270dc1d72ba5c572e57faee1e8b (patch) | |
tree | 79246b883e41c961f5c914af90d0794530952b21 /misc | |
parent | fa2fc1510f697b7cdb19563d77dba5d0445acb2a (diff) | |
download | freebsd-ports-gnome-4036185a6daeb270dc1d72ba5c572e57faee1e8b.tar.gz freebsd-ports-gnome-4036185a6daeb270dc1d72ba5c572e57faee1e8b.tar.zst freebsd-ports-gnome-4036185a6daeb270dc1d72ba5c572e57faee1e8b.zip |
We don't have a license for GTL, so there's no point in allowing
the build to continue when PACKAGE_BUILDING.
Noticed by: kris via pointyhat
Approved by: clement (mentor)
Diffstat (limited to 'misc')
-rw-r--r-- | misc/gtl/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/misc/gtl/Makefile b/misc/gtl/Makefile index 08e5ac2cf6eb..30e1cabded7b 100644 --- a/misc/gtl/Makefile +++ b/misc/gtl/Makefile @@ -24,7 +24,9 @@ USE_INC_LIBTOOL_VER=13 USE_GNOME= lthack USE_GCC= 3.3 # Won't build with 3.4 -.if !exists("${DISTDIR}/${DISTFILES}") && !defined(PACKAGE_BUILDING) +.include <bsd.port.pre.mk> + +.if !exists(${DISTDIR}/GTL-${PORTVERSION}.tar.gz) ECHO_MSG=/usr/bin/printf IGNORE= \n\ With the release of version 1.0.0 the download policy of GTL has been\n\ @@ -44,4 +46,4 @@ If you intend to use GTL commercially please send an email to\n\ brandenb@fmi.uni-passau.de.\n .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |