summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-06-01 15:50:14 +0000
committerWill Andrews <will@FreeBSD.org>2000-06-01 15:50:14 +0000
commit8bd5afa357d5276dbd794a802cd0c5443e35b19e (patch)
tree2afef2f73136742aaf985ee650ae9c3bf53e092c /audio
parentGogo has some IA-32 assembler code, so don't try to build it on anything (diff)
Since cdd has code that dates back to before CAM, we have to disable its
building on 4.0 and later. PR: 18945 Submitted by: Alexander Langer <alex@big.endian.de>
Notes
Notes: svn path=/head/; revision=29052
Diffstat (limited to 'audio')
-rw-r--r--audio/cdd/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/cdd/Makefile b/audio/cdd/Makefile
index ee8e33049e47..a52bdfc693c9 100644
--- a/audio/cdd/Makefile
+++ b/audio/cdd/Makefile
@@ -13,10 +13,16 @@ EXTRACT_SUFX= .tgz
MAINTAINER= luigi@iet.unipi.it
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 400000
+BROKEN= pre-CAM SCSI layer
+.endif
+
post-extract:
${CP} ${FILESDIR}/cdd_atapicmds.[ch] ${WRKSRC}
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/cdd ${PREFIX}/bin
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>