From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A216D138334 for ; Sun, 16 Sep 2018 08:03:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9450E0D1C; Sun, 16 Sep 2018 08:03:32 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8AF51E0D1B for ; Sun, 16 Sep 2018 08:03:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 18942335CD7 for ; Sun, 16 Sep 2018 08:03:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0FE13DA for ; Sun, 16 Sep 2018 08:03:29 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1537084992.20777ad8fcee2e5734826d1c23b0ea1c292b1ec7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/gnome-mplayer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/gnome-mplayer/gnome-mplayer-1.0.9-r1.ebuild X-VCS-Directories: media-video/gnome-mplayer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 20777ad8fcee2e5734826d1c23b0ea1c292b1ec7 X-VCS-Branch: master Date: Sun, 16 Sep 2018 08:03: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: 10aef386-759e-4b2b-95c5-2903e667b8b8 X-Archives-Hash: bd75ba4aa77dfbaeaff53edf649bf096 commit: 20777ad8fcee2e5734826d1c23b0ea1c292b1ec7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Sep 15 23:14:30 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Sep 16 08:03:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20777ad8 media-video/gnome-mplayer: Drop USE musicbrainz Package-Manager: Portage-2.3.49, Repoman-2.3.10 .../gnome-mplayer/gnome-mplayer-1.0.9-r1.ebuild | 75 ++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/media-video/gnome-mplayer/gnome-mplayer-1.0.9-r1.ebuild b/media-video/gnome-mplayer/gnome-mplayer-1.0.9-r1.ebuild new file mode 100644 index 00000000000..bd9fa8ca7f6 --- /dev/null +++ b/media-video/gnome-mplayer/gnome-mplayer-1.0.9-r1.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +inherit gnome2-utils xdg-utils + +DESCRIPTION="A GTK+ interface to MPlayer" +HOMEPAGE="https://code.google.com/p/gnome-mplayer/" +SRC_URI="https://${PN}.googlecode.com/svn/packages/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 ~ppc ~ppc64 x86 ~x86-fbsd" +IUSE="alsa +dbus +dconf gda gnome ipod libnotify pulseaudio" + +COMMON_DEPEND=">=dev-libs/glib-2.30 + >=media-libs/gmtk-${PV}[dconf=] + >=x11-libs/gtk+-3.2:3 + x11-libs/libX11 + x11-libs/libXScrnSaver + alsa? ( media-libs/alsa-lib ) + dbus? ( >=dev-libs/dbus-glib-0.100 ) + gda? ( gnome-extra/libgda:5 ) + gnome? ( gnome-base/nautilus ) + ipod? ( >=media-libs/libgpod-0.7 ) + libnotify? ( >=x11-libs/libnotify-0.7 ) + pulseaudio? ( >=media-sound/pulseaudio-0.9.14 )" +RDEPEND="${COMMON_DEPEND} + x11-themes/gnome-icon-theme-symbolic + >=media-video/mplayer-1.0_rc4_p20100101[libass]" +DEPEND="${COMMON_DEPEND} + sys-devel/gettext + virtual/pkgconfig" + +DOCS="ChangeLog README DOCS/*.txt DOCS/tech/*.txt" + +src_configure() { + # TODO: temporarily --disable-nemo only because it's untested and new feature in 1.0.9 + econf \ + --enable-gtk3 \ + $(use_enable gnome nautilus) \ + --disable-nemo \ + --with-gio \ + $(use_with dbus) \ + $(use_with gda libgda) \ + $(use_with alsa) \ + $(use_with pulseaudio) \ + $(use_with libnotify) \ + $(use_with ipod libgpod) \ + --without-libmusicbrainz3 +} + +src_install() { + default + rm -rf "${ED}"/usr/share/doc/${PN} +} + +pkg_preinst() { + gnome2_icon_savelist + gnome2_schemas_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_mimeinfo_database_update + gnome2_icon_cache_update + gnome2_schemas_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_mimeinfo_database_update + gnome2_icon_cache_update + gnome2_schemas_update +}