diff options
author | kris <kris@FreeBSD.org> | 2004-03-15 10:59:34 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-15 10:59:34 +0000 |
commit | 15cf601e5ffe1249450ae41a9b3d961e4b1c201f (patch) | |
tree | 30ce5b8113d25612b1a22ef97a5d433cf232b00e /audio | |
parent | fef4a9a1024a19e4de67fbca78b3669d92103c00 (diff) | |
download | FreeBSD-ports-15cf601e5ffe1249450ae41a9b3d961e4b1c201f.zip FreeBSD-ports-15cf601e5ffe1249450ae41a9b3d961e4b1c201f.tar.gz |
The only architectures that support the bktr driver are i386 and alpha 5.x
Diffstat (limited to 'audio')
-rw-r--r-- | audio/wmtune/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/audio/wmtune/Makefile b/audio/wmtune/Makefile index 6b1f83b..906fdc8 100644 --- a/audio/wmtune/Makefile +++ b/audio/wmtune/Makefile @@ -26,10 +26,12 @@ USE_REINPLACE= yes PATCH_ARGS =-p0 -d ${WRKDIR} +ONLY_FOR_ARCHS= i386 alpha + .include <bsd.port.pre.mk> -.if ${ARCH} != "i386" && !(${ARCH} == "alpha" && ${OSVERSION} >= 500000) -BROKEN= "Does not compile on !i386 or alpha 4.x" +.if ${ARCH} == "alpha" && ${OSVERSION} < 500000 +IGNORE= "cannot be build on alpha 4.x, which does not have bktr hardware support" .endif .if !defined(WITH_RADIOTRACK) |