Received: by mail.netbsd.org (Postfix, from userid 605) id D58BA84D70; Mon, 21 Aug 2017 23:54:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6A91184D67 for ; Mon, 21 Aug 2017 23:54:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id xeD4rqq_3RiY for ; Mon, 21 Aug 2017 23:54:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id F050C84CE1 for ; Mon, 21 Aug 2017 23:54:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EB8B6FAD0; Mon, 21 Aug 2017 23:54:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150335969038350" MIME-Version: 1.0 Date: Mon, 21 Aug 2017 23:54:50 +0000 From: "Jared D. McNeill" Subject: CVS commit: pkgsrc/audio/libmatemixer To: pkgsrc-changes@NetBSD.org Reply-To: jmcneill@netbsd.org X-Mailer: log_accum Message-Id: <20170821235450.EB8B6FAD0@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_150335969038350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jmcneill Date: Mon Aug 21 23:54:50 UTC 2017 Modified Files: pkgsrc/audio/libmatemixer: Makefile PLIST Log Message: Enable OSS backend where available. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/audio/libmatemixer/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/audio/libmatemixer/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150335969038350 Content-Disposition: inline Content-Length: 1660 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/libmatemixer/Makefile diff -u pkgsrc/audio/libmatemixer/Makefile:1.5 pkgsrc/audio/libmatemixer/Makefile:1.6 --- pkgsrc/audio/libmatemixer/Makefile:1.5 Fri Jun 23 20:39:14 2017 +++ pkgsrc/audio/libmatemixer/Makefile Mon Aug 21 23:54:50 2017 @@ -1,10 +1,19 @@ -# $NetBSD: Makefile,v 1.5 2017/06/23 20:39:14 youri Exp $ +# $NetBSD: Makefile,v 1.6 2017/08/21 23:54:50 jmcneill Exp $ .include "../../meta-pkgs/mate/Makefile.common" DISTNAME= libmatemixer-${VERSION} +PKGREVISION= 1 CATEGORIES= audio COMMENT= MATE audio mixer +.include "../../mk/oss.buildlink3.mk" + +PLIST_VARS+= oss +.if ${OSS_TYPE} != "none" +CONFIGURE_ARGS+= --enable-oss +PLIST.oss= yes +.endif + .include "../../mk/bsd.pkg.mk" Index: pkgsrc/audio/libmatemixer/PLIST diff -u pkgsrc/audio/libmatemixer/PLIST:1.2 pkgsrc/audio/libmatemixer/PLIST:1.3 --- pkgsrc/audio/libmatemixer/PLIST:1.2 Fri Jun 23 20:39:14 2017 +++ pkgsrc/audio/libmatemixer/PLIST Mon Aug 21 23:54:50 2017 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2017/06/23 20:39:14 youri Exp $ +@comment $NetBSD: PLIST,v 1.3 2017/08/21 23:54:50 jmcneill Exp $ include/mate-mixer/libmatemixer/matemixer-app-info.h include/mate-mixer/libmatemixer/matemixer-context.h include/mate-mixer/libmatemixer/matemixer-device-switch.h @@ -17,6 +17,7 @@ include/mate-mixer/libmatemixer/matemixe include/mate-mixer/libmatemixer/matemixer.h lib/libmatemixer.la lib/libmatemixer/libmatemixer-null.la +${PLIST.oss}lib/libmatemixer/libmatemixer-oss.la lib/pkgconfig/libmatemixer.pc share/gtk-doc/html/libmatemixer/MateMixerAppInfo.html share/gtk-doc/html/libmatemixer/MateMixerContext.html --_----------=_150335969038350--