From owner-svn-ports-head@freebsd.org Mon Jun 12 11:25:06 2017 Return-Path: Delivered-To: svn-ports-head@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 28462BFA6AB; Mon, 12 Jun 2017 11:25:06 +0000 (UTC) (envelope-from tobik@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 EB32C6840A; Mon, 12 Jun 2017 11:25:05 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5CBP5O3045600; Mon, 12 Jun 2017 11:25:05 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5CBP53H045598; Mon, 12 Jun 2017 11:25:05 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201706121125.v5CBP53H045598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 12 Jun 2017 11:25:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443440 - head/audio/siren X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2017 11:25:06 -0000 Author: tobik Date: Mon Jun 12 11:25:04 2017 New Revision: 443440 URL: https://svnweb.freebsd.org/changeset/ports/443440 Log: Allow building of more than one output plugin. Output plugins can be selected at run time with e.g. ':set output-plugin pulse'. - Add SNDIO option - Add LICENSE_FILE (yes, the filename is really LICENCE ;)) Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11120 Modified: head/audio/siren/Makefile head/audio/siren/pkg-plist Modified: head/audio/siren/Makefile ============================================================================== --- head/audio/siren/Makefile Mon Jun 12 10:39:32 2017 (r443439) +++ head/audio/siren/Makefile Mon Jun 12 11:25:04 2017 (r443440) @@ -3,6 +3,7 @@ PORTNAME= siren PORTVERSION= 0.7 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://www.kariliq.nl/${PORTNAME}/dist/ @@ -10,6 +11,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Text-based audio player LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENCE LIB_DEPENDS= libFLAC.so:audio/flac \ libid3tag.so:audio/libid3tag \ @@ -27,12 +29,18 @@ HAS_CONFIGURE= yes USE_CSTD= c99 OPTIONS_DEFINE= FFMPEG MPG123 -OPTIONS_SINGLE= SOUND -OPTIONS_SINGLE_SOUND= OSS PULSEAUDIO +OPTIONS_MULTI= SOUND +OPTIONS_MULTI_SOUND= OSS PULSEAUDIO SNDIO OPTIONS_DEFAULT= OSS -OSS_CONFIGURE_ON= oss=yes pulse=no +OSS_CONFIGURE_ON= oss=yes +OSS_CONFIGURE_OFF= oss=no PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio -PULSEAUDIO_CONFIGURE_ON= oss=no pulse=yes +PULSEAUDIO_CONFIGURE_ON= pulse=yes +PULSEAUDIO_CONFIGURE_OFF= pulse=no +SNDIO_CONFIGURE_ON= sndio=yes +SNDIO_CONFIGURE_OFF= sndio=no +SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio +SNDIO_USES= localbase:ldflags FFMPEG_CONFIGURE_ON= ffmpeg=yes FFMPEG_CONFIGURE_OFF= ffmpeg=no FFMPEG_LIB_DEPENDS= libavformat.so:multimedia/ffmpeg @@ -44,7 +52,6 @@ OPTIONS_SUB= yes CONFIGURE_ARGS= sndfile=no \ alsa=no \ ao=no \ - sndio=no \ sun=no \ portaudio=no \ aac=no Modified: head/audio/siren/pkg-plist ============================================================================== --- head/audio/siren/pkg-plist Mon Jun 12 10:39:32 2017 (r443439) +++ head/audio/siren/pkg-plist Mon Jun 12 11:25:04 2017 (r443440) @@ -8,4 +8,5 @@ lib/siren/ip/wavpack.so %%MPG123%%lib/siren/ip/mpg123.so %%OSS%%lib/siren/op/oss.so %%PULSEAUDIO%%lib/siren/op/pulse.so +%%SNDIO%%lib/siren/op/sndio.so man/man1/siren.1.gz