Received: by mail.netbsd.org (Postfix, from userid 605) id 3A38484F36; Mon, 23 Jul 2018 04:56:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 40ADA84F3C for ; Mon, 23 Jul 2018 04:56:13 +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 I-FeCcj_X2-k for ; Mon, 23 Jul 2018 04:56:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 91B7984F36 for ; Mon, 23 Jul 2018 04:56:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 88FF1FBEC; Mon, 23 Jul 2018 04:56:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1532321772269710" MIME-Version: 1.0 Date: Mon, 23 Jul 2018 04:56:12 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/www/firefox52 To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20180723045612.88FF1FBEC@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. --_----------=_1532321772269710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Mon Jul 23 04:56:12 UTC 2018 Modified Files: pkgsrc/www/firefox52: Makefile options.mk Log Message: firefox52: switch netbsd to oss and linux to pulse. alsa is problematic and pulseaudio is more widely used on linux. oss works fine on netbsd, no need for extra dependencies. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/www/firefox52/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/www/firefox52/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1532321772269710 Content-Disposition: inline Content-Length: 1675 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/firefox52/Makefile diff -u pkgsrc/www/firefox52/Makefile:1.27 pkgsrc/www/firefox52/Makefile:1.28 --- pkgsrc/www/firefox52/Makefile:1.27 Fri Jul 20 03:34:31 2018 +++ pkgsrc/www/firefox52/Makefile Mon Jul 23 04:56:12 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2018/07/20 03:34:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.28 2018/07/23 04:56:12 maya Exp $ FIREFOX_VER= ${MOZ_BRANCH}${MOZ_BRANCH_MINOR} MOZ_BRANCH= 52.9 @@ -6,7 +6,7 @@ MOZ_BRANCH_MINOR= .0esr DISTNAME= firefox-${FIREFOX_VER}.source PKGNAME= firefox52-${MOZ_BRANCH}${MOZ_BRANCH_MINOR:S/b/beta/:S/esr//} -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= www MASTER_SITES+= ${MASTER_SITE_MOZILLA:=firefox/releases/${FIREFOX_VER}/source/} MASTER_SITES+= ${MASTER_SITE_MOZILLA_ALL:=firefox/releases/${FIREFOX_VER}/source/} Index: pkgsrc/www/firefox52/options.mk diff -u pkgsrc/www/firefox52/options.mk:1.1 pkgsrc/www/firefox52/options.mk:1.2 --- pkgsrc/www/firefox52/options.mk:1.1 Thu Apr 27 01:55:57 2017 +++ pkgsrc/www/firefox52/options.mk Mon Jul 23 04:56:12 2018 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.1 2017/04/27 01:55:57 ryoon Exp $ +# $NetBSD: options.mk,v 1.2 2018/07/23 04:56:12 maya Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.firefox @@ -12,9 +12,9 @@ PKG_SUPPORTED_OPTIONS+= alsa oss pulseau PLIST_VARS+= gnome jemalloc debug .if ${OPSYS} == "Linux" -PKG_SUGGESTED_OPTIONS+= alsa mozilla-jemalloc dbus +PKG_SUGGESTED_OPTIONS+= pulseaudio mozilla-jemalloc dbus .elif ${OPSYS} == "NetBSD" -PKG_SUGGESTED_OPTIONS+= alsa dbus +PKG_SUGGESTED_OPTIONS+= oss dbus .elif ${OPSYS} == "FreeBSD" PKG_SUGGESTED_OPTIONS+= oss dbus .elif ${OPSYS} == "DragonFly" --_----------=_1532321772269710--