From owner-svn-ports-head@freebsd.org Mon Feb 1 18:51:21 2021 Return-Path: Delivered-To: svn-ports-head@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 8FAE7531E57; Mon, 1 Feb 2021 18:51:21 +0000 (UTC) (envelope-from madpilot@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 4DTxqY3hdyz4YTc; Mon, 1 Feb 2021 18:51:21 +0000 (UTC) (envelope-from madpilot@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 719511FFF3; Mon, 1 Feb 2021 18:51:21 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 111IpLqV088082; Mon, 1 Feb 2021 18:51:21 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 111IpKdT088077; Mon, 1 Feb 2021 18:51:20 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <202102011851.111IpKdT088077@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 1 Feb 2021 18:51:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r563607 - in head/audio: . gtk-mixer X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in head/audio: . gtk-mixer X-SVN-Commit-Revision: 563607 X-SVN-Commit-Repository: ports 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.34 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, 01 Feb 2021 18:51:21 -0000 Author: madpilot Date: Mon Feb 1 18:51:20 2021 New Revision: 563607 URL: https://svnweb.freebsd.org/changeset/ports/563607 Log: GTK-Mixer is GTK based volume control tool ("mixer"). GUI from xfce4-mixer: https://gitlab.xfce.org/apps/xfce4-mixer but xfce4 and gstreamer does not used. Features - plugins for support different sound backens - change system default sound card - set volume per line/channel - enable/disable lines (mute/unmute) - detect sound cards connect/disconnect - detect default sound card change WWW: https://github.com/rozhuk-im/gtk-mixer PR: 253150 Submitted by: rozhuk.im@gmail.com Added: head/audio/gtk-mixer/ head/audio/gtk-mixer/Makefile (contents, props changed) head/audio/gtk-mixer/distinfo (contents, props changed) head/audio/gtk-mixer/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Mon Feb 1 18:50:32 2021 (r563606) +++ head/audio/Makefile Mon Feb 1 18:51:20 2021 (r563607) @@ -315,6 +315,7 @@ SUBDIR += gstreamer1-plugins-wavpack SUBDIR += gstreamer1-plugins-webrtcdsp SUBDIR += gtick + SUBDIR += gtk-mixer SUBDIR += gtkguitune SUBDIR += gtkpod SUBDIR += gtmixer Added: head/audio/gtk-mixer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/gtk-mixer/Makefile Mon Feb 1 18:51:20 2021 (r563607) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= gtk-mixer +PORTVERSION= 1.0.0 +CATEGORIES= audio + +MAINTAINER= rozhuk.im@gmail.com +COMMENT= GTK based volume control tool + +LICENSE= GPLv2 + +USES= cmake gnome pkgconfig +USE_GNOME= cairo gdkpixbuf2 gtk30 +USE_GITHUB= yes +GH_ACCOUNT= rozhuk-im + +PLIST_FILES= bin/gtk-mixer \ + share/pixmaps/gtk-mixer.png + +DESKTOP_ENTRIES="GTK-Mixer" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "GTK;AudioVideo;Audio;Mixer;" true + +post-install: + ${LN} -sf gvolwheel/audio-volume-high.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png + +.include Added: head/audio/gtk-mixer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/gtk-mixer/distinfo Mon Feb 1 18:51:20 2021 (r563607) @@ -0,0 +1,3 @@ +TIMESTAMP = 1612162986 +SHA256 (rozhuk-im-gtk-mixer-1.0.0_GH0.tar.gz) = 184ddcd8b7cfd8deb057746a603aa28cfc826ea24ab015f496ecf79166882e30 +SIZE (rozhuk-im-gtk-mixer-1.0.0_GH0.tar.gz) = 27490 Added: head/audio/gtk-mixer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/gtk-mixer/pkg-descr Mon Feb 1 18:51:20 2021 (r563607) @@ -0,0 +1,14 @@ +GTK-Mixer is GTK based volume control tool ("mixer"). + +GUI from xfce4-mixer: https://gitlab.xfce.org/apps/xfce4-mixer but +xfce4 and gstreamer does not used. + +Features +- plugins for support different sound backens +- change system default sound card +- set volume per line/channel +- enable/disable lines (mute/unmute) +- detect sound cards connect/disconnect +- detect default sound card change + +WWW: https://github.com/rozhuk-im/gtk-mixer