diff options
author | Sam Lawrance <lawrance@FreeBSD.org> | 2005-04-22 10:16:18 +0000 |
---|---|---|
committer | Sam Lawrance <lawrance@FreeBSD.org> | 2005-04-22 10:16:18 +0000 |
commit | dbdb9f3e5c4744402f062831e2f617a6648d9851 (patch) | |
tree | 23e3c7e2124931b526458eef4014d5735cc4786e /misc/gtl/Makefile | |
parent | 51e65891d47e96fb907f5e2091d83d558a565dc3 (diff) | |
download | ports-dbdb9f3e5c4744402f062831e2f617a6648d9851.tar.gz ports-dbdb9f3e5c4744402f062831e2f617a6648d9851.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)
Notes
Notes:
svn path=/head/; revision=133927
Diffstat (limited to 'misc/gtl/Makefile')
-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> |