From owner-dev-commits-ports-all@freebsd.org Sun Jun 27 09:17:02 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 33421663A70; Sun, 27 Jun 2021 09:17:02 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GCQ9V0jYwz3Qcd; Sun, 27 Jun 2021 09:17:02 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0083A78B5; Sun, 27 Jun 2021 09:17:02 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 15R9H1hG080967; Sun, 27 Jun 2021 09:17:01 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15R9H1lB080966; Sun, 27 Jun 2021 09:17:01 GMT (envelope-from git) Date: Sun, 27 Jun 2021 09:17:01 GMT Message-Id: <202106270917.15R9H1lB080966@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Yuri Victorovich Subject: git: e9946a7d27c8 - main - audio/psindustrializer: Add audio backend options MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yuri X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: e9946a7d27c82dbab07c6bd8d37ec10a14692c40 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jun 2021 09:17:02 -0000 The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=e9946a7d27c82dbab07c6bd8d37ec10a14692c40 commit e9946a7d27c82dbab07c6bd8d37ec10a14692c40 Author: Yuri Victorovich AuthorDate: 2021-06-27 09:03:02 +0000 Commit: Yuri Victorovich CommitDate: 2021-06-27 09:03:02 +0000 audio/psindustrializer: Add audio backend options PR: 256859 Suggested by: p5B2E9A8F@t-online.de --- audio/psindustrializer/Makefile | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/audio/psindustrializer/Makefile b/audio/psindustrializer/Makefile index c5d6c378a188..6f69f724b5c7 100644 --- a/audio/psindustrializer/Makefile +++ b/audio/psindustrializer/Makefile @@ -1,6 +1,7 @@ PORTNAME= psindustrializer DISTVERSION= 0.2.7 DISTVERSIONSUFFIX= -pre2 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= SF/industrializer/ @@ -14,9 +15,7 @@ LIB_DEPENDS= libaudiofile.so:audio/libaudiofile \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libgtkglext-x11-1.0.so:x11-toolkits/gtkglext \ - libharfbuzz.so:print/harfbuzz \ - libjack.so:audio/jack \ - libpulse.so:audio/pulseaudio + libharfbuzz.so:print/harfbuzz USES= gettext-runtime gl gmake gnome libtool pkgconfig tar:xz xorg USE_GNOME= atk cairo gdkpixbuf2 gtk20 libxml2 pango pangox-compat @@ -27,6 +26,19 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-alsa -INSTALL_TARGET=install-strip +INSTALL_TARGET= install-strip + +OPTIONS_MULTI= BACKEND +OPTIONS_MULTI_BACKEND= JACK PULSE +OPTIONS_DEFAULT= PULSE + +BACKEND_DESC= Audio Backend + +JACK_CONFIGURE_ENABLE= jack +JACK_LIB_DEPENDS= libjack.so:audio/jack + +PULSE_DESC= PulseAudio support +PULSE_CONFIGURE_ENABLE= pulse +PULSE_LIB_DEPENDS= libpulse.so:audio/pulseaudio .include