From owner-svn-ports-all@freebsd.org Sat Mar 25 03:29:11 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0FC4BD0FF3F; Sat, 25 Mar 2017 03:29:11 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DEAD17A; Sat, 25 Mar 2017 03:29:10 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2P3TAVd056593; Sat, 25 Mar 2017 03:29:10 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2P3T9CB056585; Sat, 25 Mar 2017 03:29:09 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201703250329.v2P3T9CB056585@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 25 Mar 2017 03:29:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436874 - in head/audio/oss: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Mar 2017 03:29:11 -0000 Author: jbeich Date: Sat Mar 25 03:29:09 2017 New Revision: 436874 URL: https://svnweb.freebsd.org/changeset/ports/436874 Log: audio/oss: update to 4.2.b2017 (maintenance release) - Add a note about origin to avoid users from Linux blaming FreeBSD for 4Front's bugs and vice versa - Disable SSE on amd64 to avoid kernel panic[1] Changes: http://opensound.com/forum/viewtopic.php?f=19&t=5841 PR: 212263 Submitted by: Jakub Adler [1] MFH: 2017Q1 Added: head/audio/oss/files/patch-setup_srcconf__freebsd.inc (contents, props changed) Modified: head/audio/oss/Makefile (contents, props changed) head/audio/oss/distinfo (contents, props changed) head/audio/oss/pkg-descr (contents, props changed) head/audio/oss/pkg-plist (contents, props changed) Modified: head/audio/oss/Makefile ============================================================================== --- head/audio/oss/Makefile Sat Mar 25 03:24:10 2017 (r436873) +++ head/audio/oss/Makefile Sat Mar 25 03:29:09 2017 (r436874) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= oss -DISTVERSION= 4.2-build2011 +DISTVERSION= 4.2-build2017 CATEGORIES= audio MASTER_SITES= http://www.opensound.com/developer/sources/stable/bsd/ DISTNAME= ${PORTNAME}-v${DISTVERSION}-src-bsd MAINTAINER= ports@FreeBSD.org -COMMENT= Open Sound System +COMMENT= Open Sound System from 4Front Technologies LICENSE= BSD2CLAUSE Modified: head/audio/oss/distinfo ============================================================================== --- head/audio/oss/distinfo Sat Mar 25 03:24:10 2017 (r436873) +++ head/audio/oss/distinfo Sat Mar 25 03:29:09 2017 (r436874) @@ -1,2 +1,3 @@ -SHA256 (oss-v4.2-build2011-src-bsd.tar.bz2) = 65ba999222d7250242c23d6d13e98dc39d3157c14acc32691d8aa9678ccedbbc -SIZE (oss-v4.2-build2011-src-bsd.tar.bz2) = 1628950 +TIMESTAMP = 1486110185 +SHA256 (oss-v4.2-build2017-src-bsd.tar.bz2) = 8ef2b1b964719b4c356de234d4b28832302027dc23bf636820be1afe1b099972 +SIZE (oss-v4.2-build2017-src-bsd.tar.bz2) = 1714709 Added: head/audio/oss/files/patch-setup_srcconf__freebsd.inc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/oss/files/patch-setup_srcconf__freebsd.inc Sat Mar 25 03:29:09 2017 (r436874) @@ -0,0 +1,10 @@ +--- setup/srcconf_freebsd.inc.orig 2014-02-14 22:59:55 UTC ++++ setup/srcconf_freebsd.inc +@@ -12,6 +12,6 @@ add_kernel_flags (FILE * f) + { + # if defined(__x86_64__) + fprintf (f, +- "CFLAGS += -O3 -fno-common -mcmodel=kernel -mno-red-zone -fno-asynchronous-unwind-tables -ffreestanding\n"); ++ "CFLAGS += -O3 -fno-common -mcmodel=kernel -mno-red-zone -fno-asynchronous-unwind-tables -ffreestanding -mno-sse\n"); + # endif + } Modified: head/audio/oss/pkg-descr ============================================================================== --- head/audio/oss/pkg-descr Sat Mar 25 03:24:10 2017 (r436873) +++ head/audio/oss/pkg-descr Sat Mar 25 03:29:09 2017 (r436874) @@ -2,4 +2,7 @@ Open Sound System for FreeBSD is a audio a cross platform audio and MIDI API with device drivers for most consumer and professional PCI and USB audio devices. +Not to be confused with sound(4) which is a different implementation +with the same API. + WWW: http://opensound.com/ Modified: head/audio/oss/pkg-plist ============================================================================== --- head/audio/oss/pkg-plist Sat Mar 25 03:24:10 2017 (r436873) +++ head/audio/oss/pkg-plist Sat Mar 25 03:29:09 2017 (r436874) @@ -29,6 +29,7 @@ lib/oss/conf/oss_ymf7xx.conf.sample lib/oss/conf/osscore.conf.sample lib/oss/etc/devices.list lib/oss/include/sys/soundcard.h +lib/oss/modules/lynxone.ko lib/oss/modules/oss_ali5455.ko lib/oss/modules/oss_atiaudio.ko lib/oss/modules/oss_audigyls.ko @@ -73,6 +74,7 @@ man/man1/osstest.1.gz man/man1/ossxmix.1.gz man/man1/soundoff.1.gz man/man1/soundon.1.gz +man/man7/lynxone.7.gz man/man7/oss_ali5455.7.gz man/man7/oss_atiaudio.7.gz man/man7/oss_audigyls.7.gz