From owner-svn-ports-all@freebsd.org Thu Dec 20 17:58:03 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49459134ECED; Thu, 20 Dec 2018 17:58:03 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E62AD8B863; Thu, 20 Dec 2018 17:58:02 +0000 (UTC) (envelope-from romain@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D4925123D; Thu, 20 Dec 2018 17:58:02 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBKHw2fx061746; Thu, 20 Dec 2018 17:58:02 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBKHw2tZ061745; Thu, 20 Dec 2018 17:58:02 GMT (envelope-from romain@FreeBSD.org) Message-Id: <201812201758.wBKHw2tZ061745@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: romain set sender to romain@FreeBSD.org using -f From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= Date: Thu, 20 Dec 2018 17:58:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487895 - head/audio/baresip X-SVN-Group: ports-head X-SVN-Commit-Author: romain X-SVN-Commit-Paths: head/audio/baresip X-SVN-Commit-Revision: 487895 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E62AD8B863 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Thu, 20 Dec 2018 17:58:03 -0000 Author: romain Date: Thu Dec 20 17:58:02 2018 New Revision: 487895 URL: https://svnweb.freebsd.org/changeset/ports/487895 Log: Add an option to enable PulseAudio The option is disabled by default, so the package is not modified, no PORTREVISION bump needed. PR: 234225 Approved by: crees (maintainer) Modified: head/audio/baresip/Makefile head/audio/baresip/Makefile.depends Modified: head/audio/baresip/Makefile ============================================================================== --- head/audio/baresip/Makefile Thu Dec 20 17:52:30 2018 (r487894) +++ head/audio/baresip/Makefile Thu Dec 20 17:58:02 2018 (r487895) @@ -26,7 +26,7 @@ PORTEXAMPLES= * #OPTIONS_NOT_YET_WORKING= ALSA BV32 G722_1 PLC ISAC OPENGLES OPTIONS_DEFINE= CONS DOCS EXAMPLES FFMPEG G711 G722 G726 GSM GSTREAMER ILBC \ - L16 OPUS OSS PORTAUDIO SDL SNDFILE SPEEX STDIO UUID V4L V4L2 X11 \ + L16 OPUS OSS PORTAUDIO PULSEAUDIO SDL SNDFILE SPEEX STDIO UUID V4L V4L2 X11 \ DTLS_SRTP AUBRIDGE VIDBRIDGE HTTPD DSHOW DIRECTFB ACCOUNT \ NATPMP SDL MIW SNAPSHOT SELFVIEW VUMETER AULOOP CONTACT \ MENU PRESENCE SYSLOG VIDLOOP @@ -68,6 +68,11 @@ $o_DESC= ${o:C,^(.).*,\1,}${o:C,^.,,:tl} module # Port calls it GST, standard OPTION is GSTREAMER .if ${PORT_OPTIONS:MGSTREAMER} PORT_OPTIONS+= GST +.endif + +# Port calls it PULSE, standard OPTION is PULSEAUDIO +.if ${PORT_OPTIONS:MPULSEAUDIO} +PORT_OPTIONS+= PULSE .endif .if ${PORT_OPTIONS:MSDL} Modified: head/audio/baresip/Makefile.depends ============================================================================== --- head/audio/baresip/Makefile.depends Thu Dec 20 17:52:30 2018 (r487894) +++ head/audio/baresip/Makefile.depends Thu Dec 20 17:58:02 2018 (r487895) @@ -17,6 +17,7 @@ OPUS_DEPEND= ${LOCALBASE}/include/opus/opus.h:audio/op OSS_DEPEND= # In base PLC_DEPEND= ${LOCALBASE}/include/spandsp/plc.h:comms/spandsp PORTAUDIO_DEPEND= ${LOCALBASE}/include/portaudio.h:audio/portaudio +PULSEAUDIO_DEPEND= ${LOCALBASE}/include/pulse/pulseaudio.h:audio/pulseaudio SDL_DEPEND= # Handled with USE_SDL in Makefile SNDFILE_DEPEND= ${LOCALBASE}/include/sndfile.h:audio/libsndfile SPEEX_DEPEND= ${LOCALBASE}/include/speex/speex.h:audio/speex