diff options
author | dholland <dholland@pkgsrc.org> | 2015-01-01 09:09:15 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2015-01-01 09:09:15 +0000 |
commit | f565dafdf2b6e14d96a3d4d8800c5961ccc5aec1 (patch) | |
tree | 576e428f8f51d54a7c212f94e406a8d3aabcfac0 | |
parent | 8fb9b64f948d1dc923bfe87169b2b819cec41568 (diff) | |
download | pkgsrc-f565dafdf2b6e14d96a3d4d8800c5961ccc5aec1.tar.gz |
Use BROKEN_EXCEPT_ON_PLATFORM. This package comes only with cdrom code
for Solaris and IRIX; we ship cdrom code for BSD, so theoretically we
could also ship cdrom code for other platforms if anyone wanted to get
it working. Hence, report it broken on those platforms instead of
skipping it.
-rw-r--r-- | audio/xcdplayer/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/audio/xcdplayer/Makefile b/audio/xcdplayer/Makefile index ef524fa686a..4bd94641839 100644 --- a/audio/xcdplayer/Makefile +++ b/audio/xcdplayer/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2012/10/02 23:48:13 asau Exp $ +# $NetBSD: Makefile,v 1.28 2015/01/01 09:09:15 dholland Exp $ DISTNAME= xcdplayer-2.2 PKGREVISION= 6 @@ -9,7 +9,11 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= CD player for X -ONLY_FOR_PLATFORM= SunOS-*-* IRIX-*-* DragonFly-*-* FreeBSD-*-* NetBSD-*-* OpenBSD-*-* +# cdrom interface code only exists for Solaris, SGI, and BSD. +# (and note that the BSD code doesn't come with but is in files/) +BROKEN_EXCEPT_ON_PLATFORM= SunOS-*-* IRIX-*-* \ + DragonFly-*-* FreeBSD-*-* \ + NetBSD-*-* OpenBSD-*-* USE_IMAKE= yes |