diff options
author | itojun <itojun@pkgsrc.org> | 2000-02-11 04:36:17 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2000-02-11 04:36:17 +0000 |
commit | c4358d45f65909c60dcf252abd3811f8cc9391a9 (patch) | |
tree | 7f8507c294eb96a072e3dbdd009bcb7b7373588b /games/quake6 | |
parent | 5f9cc8ee354404a39e7f13866f8214a7dda3740c (diff) | |
download | pkgsrc-c4358d45f65909c60dcf252abd3811f8cc9391a9.tar.gz |
actually this pkgsrc require USE_INET6=YES. add IGNORE for non-USE_INET6
platforms.
Diffstat (limited to 'games/quake6')
-rw-r--r-- | games/quake6/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/games/quake6/Makefile b/games/quake6/Makefile index 2afcd79cf02..178a0ffcedd 100644 --- a/games/quake6/Makefile +++ b/games/quake6/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2000/02/11 03:58:14 hubertf Exp $ +# $NetBSD: Makefile,v 1.5 2000/02/11 04:36:17 itojun Exp $ DISTNAME= quake-v6-bsd-kame PKGNAME= quake6-0.0 @@ -22,7 +22,14 @@ post-extract: USE_GMAKE= yes GNU_CONFIGURE= yes -# This pkg does not regard USE_INET6, but works fine with IPv6 + +# This pkg can be built on USE_INET6 platform only +BUILD_DEFS+= USE_INET6 +.include "../../mk/bsd.prefs.mk" +.if !(defined(USE_INET6) && ${USE_INET6} == "YES") +IGNORE= "requires IPv6 support" +.endif + # "bindir" setting is very non-standard for GNU autoconf CONFIGURE_ARGS+=--disable-asmopt --bindir=/bin |