Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 7B06F7A489 for ; Sat, 16 Jul 2016 21:21:19 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E939485EEC; Sat, 16 Jul 2016 21:21:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 78E1785EE5 for ; Sat, 16 Jul 2016 21:21:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 1yY6pmNz1VWD for ; Sat, 16 Jul 2016 21:21:18 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D61CE85ECF for ; Sat, 16 Jul 2016 21:21:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CBB45FBB5; Sat, 16 Jul 2016 21:21:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1468704077132800" MIME-Version: 1.0 Date: Sat, 16 Jul 2016 21:21:17 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/audio/snd To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20160716212117.CBB45FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1468704077132800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Jul 16 21:21:17 UTC 2016 Modified Files: pkgsrc/audio/snd: Makefile options.mk Log Message: Switch to guile20. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.81 -r1.82 pkgsrc/audio/snd/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/audio/snd/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1468704077132800 Content-Disposition: inline Content-Length: 1258 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/snd/Makefile diff -u pkgsrc/audio/snd/Makefile:1.81 pkgsrc/audio/snd/Makefile:1.82 --- pkgsrc/audio/snd/Makefile:1.81 Wed Apr 20 12:10:31 2016 +++ pkgsrc/audio/snd/Makefile Sat Jul 16 21:21:17 2016 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.81 2016/04/20 12:10:31 nros Exp $ -# +# $NetBSD: Makefile,v 1.82 2016/07/16 21:21:17 wiz Exp $ DISTNAME= snd-9.9 -PKGREVISION= 24 +PKGREVISION= 25 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=snd/} Index: pkgsrc/audio/snd/options.mk diff -u pkgsrc/audio/snd/options.mk:1.4 pkgsrc/audio/snd/options.mk:1.5 --- pkgsrc/audio/snd/options.mk:1.4 Wed Jan 25 01:18:15 2012 +++ pkgsrc/audio/snd/options.mk Sat Jul 16 21:21:17 2016 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.4 2012/01/25 01:18:15 wiz Exp $ +# $NetBSD: options.mk,v 1.5 2016/07/16 21:21:17 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.snd PKG_SUPPORTED_OPTIONS= esound guile @@ -26,7 +26,8 @@ CONFIGURE_ARGS+= --without-gtk .if !empty(PKG_OPTIONS:Mguile) CONFIGURE_ARGS+= --with-guile -.include "../../lang/guile/buildlink3.mk" +CONFIGURE_ARGS+= GUILE_CONFIG_path=${PREFIX}/guile/2.0/bin/guile-config +.include "../../lang/guile20/buildlink3.mk" .else CONFIGURE_ARGS+= --without-guile .endif --_----------=_1468704077132800--