From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 661701397F2 for ; Sat, 22 Aug 2015 00:37:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B54D514267; Sat, 22 Aug 2015 00:36:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4C7E814267 for ; Sat, 22 Aug 2015 00:36:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6BC78340766 for ; Sat, 22 Aug 2015 00:36:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 698B7161 for ; Sat, 22 Aug 2015 00:36:29 +0000 (UTC) From: "Julian Ospald" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julian Ospald" Message-ID: <1440203777.4de211b4e3815c569b7864fb7913c5f7f98881eb.hasufell@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/gmusicbrowser/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/gmusicbrowser/gmusicbrowser-9999.ebuild X-VCS-Directories: media-sound/gmusicbrowser/ X-VCS-Committer: hasufell X-VCS-Committer-Name: Julian Ospald X-VCS-Revision: 4de211b4e3815c569b7864fb7913c5f7f98881eb X-VCS-Branch: master Date: Sat, 22 Aug 2015 00:36:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fdb24355-f4c6-4dee-ba11-a2bd339cf214 X-Archives-Hash: eef19e8296a1b8fbe4a642be42203cf2 commit: 4de211b4e3815c569b7864fb7913c5f7f98881eb Author: Julian Ospald gentoo org> AuthorDate: Sat Aug 22 00:35:46 2015 +0000 Commit: Julian Ospald gentoo org> CommitDate: Sat Aug 22 00:36:17 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4de211b4 media-sound/gmusicbrowser: update live ebuild Add support for media-video/mpv. media-sound/gmusicbrowser/gmusicbrowser-9999.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/media-sound/gmusicbrowser/gmusicbrowser-9999.ebuild b/media-sound/gmusicbrowser/gmusicbrowser-9999.ebuild index 7975b1f..3fb3a81 100644 --- a/media-sound/gmusicbrowser/gmusicbrowser-9999.ebuild +++ b/media-sound/gmusicbrowser/gmusicbrowser-9999.ebuild @@ -20,6 +20,7 @@ GSTREAMER_DEPEND=" dev-perl/GStreamer-Interfaces media-plugins/gst-plugins-meta:0.10" MPLAYER_DEPEND="media-video/mplayer" +MPV_DEPEND="media-video/mpv" OTHER_DEPEND=" media-sound/alsa-utils media-sound/flac123 @@ -33,6 +34,7 @@ RDEPEND="dev-lang/perl || ( ( ${GSTREAMER_DEPEND} ) ( ${MPLAYER_DEPEND} ) + ( ${MPV_DEPEND} ) ( ${OTHER_DEPEND} ) )" DEPEND="sys-devel/gettext @@ -62,10 +64,11 @@ pkg_postinst() { fdo-mime_desktop_database_update gnome2_icon_cache_update - elog "Gmusicbrowser supports gstreamer, mplayer and mpg123/ogg123..." + elog "Gmusicbrowser supports gstreamer, mplayer, mpv and mpg123/ogg123..." elog "for audio playback. Needed dependencies:" elog "Gstreamer: ${GSTREAMER_DEPEND}" elog "mplayer: ${MPLAYER_DEPEND}" + elog "mpv: ${MPV_DEPEND}" elog "mpg123/ogg123...: ${OTHER_DEPEND}" elog elog "This ebuild just ensures at least one implementation is installed!"