diff options
author | dholland <dholland> | 2015-01-01 10:18:42 +0000 |
---|---|---|
committer | dholland <dholland> | 2015-01-01 10:18:42 +0000 |
commit | a2c34a680ce71697f59f4e8d7681f23a2590187b (patch) | |
tree | 2d78ac6c7eb0c0574ebb1684aaab58d8673cb521 | |
parent | 8b868d279e60a09398ce7e3786525ab0f6c813a5 (diff) | |
download | pkgsrc-a2c34a680ce71697f59f4e8d7681f23a2590187b.tar.gz |
document ONLY_FOR_PLATFORM
-rw-r--r-- | emulators/zsnes/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/emulators/zsnes/Makefile b/emulators/zsnes/Makefile index 0464c47f399..ab4e7033336 100644 --- a/emulators/zsnes/Makefile +++ b/emulators/zsnes/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2013/02/16 11:21:09 wiz Exp $ +# $NetBSD: Makefile,v 1.45 2015/01/01 10:18:42 dholland Exp $ DISTNAME= zsnes151src PKGNAME= zsnes-1.51 @@ -14,7 +14,12 @@ LICENSE= gnu-gpl-v2 BUILD_DEPENDS+= nasm-[0-9]*:../../devel/nasm +# Makes heavy use of 32-bit x86 assembler. ONLY_FOR_PLATFORM= *-*-i386 +# Theoretically we can build a 32-bit binary on amd64 NetBSD, but we'd +# need 32-bit SDL and png and pkgsrc doesn't currently have +# infrastructure for that. +#ONLY_FOR_PLATFORM+= NetBSD-*-x86_64 WRKSRC= ${WRKDIR}/zsnes_1_51/src USE_LANGUAGES= c c++ |