diff options
author | nia <nia@pkgsrc.org> | 2020-05-28 20:00:23 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2020-05-28 20:00:23 +0000 |
commit | 1c675b5889f78773e954edef7f4db38121f58c27 (patch) | |
tree | bc2f7ee71d25afce67ddcf6bb0ac4941d81a1603 /audio | |
parent | 911966de56845a08d53befbf11cc193c8cd1a226 (diff) | |
download | pkgsrc-1c675b5889f78773e954edef7f4db38121f58c27.tar.gz |
cmus: don't try to use OSS on NetBSD, format selection is busted
Diffstat (limited to 'audio')
-rw-r--r-- | audio/cmus/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/audio/cmus/Makefile b/audio/cmus/Makefile index 55ef7c93954..de99cfa63d4 100644 --- a/audio/cmus/Makefile +++ b/audio/cmus/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.84 2020/03/08 16:48:37 wiz Exp $ +# $NetBSD: Makefile,v 1.85 2020/05/28 20:00:23 nia Exp $ DISTNAME= cmus-2.8.0 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_GITHUB:=cmus/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -29,14 +29,13 @@ CONFIGURE_ARGS+= mandir=${PREFIX}/${PKGMANDIR} PLIST_VARS+= coreaudio sunaudio oss .include "../../mk/oss.buildlink3.mk" -.if ${OSS_TYPE} != "none" +.if ${OPSYS} != "NetBSD" && ${OSS_TYPE} != "none" PLIST.oss= yes CONFIGURE_ARGS+= CONFIG_OSS=y .else CONFIGURE_ARGS+= CONFIG_OSS=n .endif -.include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "SunOS" || exists(/usr/include/sys/audioio.h) CONFIGURE_ARGS+= CONFIG_SUN=y PLIST.sunaudio= yes |