Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/xnoise/
Date: Sun, 26 Aug 2018 11:51:16
Message-Id: 1535284260.e86bc89117a70a4a3ba7aa637f224532a9e5352f.mgorny@gentoo
1 commit: e86bc89117a70a4a3ba7aa637f224532a9e5352f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 26 11:30:33 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 26 11:51:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e86bc891
7
8 media-sound/xnoise: Remove the broken live ebuild
9
10 The live ebuild is apparently unmaintained and has dependencies that
11 have been removed from Gentoo.
12
13 media-sound/xnoise/xnoise-9999.ebuild | 79 -----------------------------------
14 1 file changed, 79 deletions(-)
15
16 diff --git a/media-sound/xnoise/xnoise-9999.ebuild b/media-sound/xnoise/xnoise-9999.ebuild
17 deleted file mode 100644
18 index 386d1f993e8..00000000000
19 --- a/media-sound/xnoise/xnoise-9999.ebuild
20 +++ /dev/null
21 @@ -1,79 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=4
26 -VALA_MIN_API_VERSION=0.20
27 -
28 -inherit xdg-utils gnome2-utils git-2 vala
29 -
30 -DESCRIPTION="A media player for Gtk+ with a slick GUI, great speed and lots of
31 -features"
32 -HOMEPAGE="http://www.xnoise-media-player.com/"
33 -EGIT_REPO_URI="https://bitbucket.org/shuerhaaken/${PN}.git"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS=""
38 -IUSE="ayatana +lastfm +lyrics"
39 -
40 -RDEPEND="x11-libs/gtk+:3
41 - >=dev-libs/glib-2.34:2
42 - gnome-base/librsvg:2
43 - media-libs/gstreamer:1.0
44 - media-libs/gst-plugins-base:1.0
45 - media-plugins/gst-plugins-meta:1.0
46 - dev-db/sqlite:3
47 - >=media-libs/libtaginfo-0.2.0
48 - x11-libs/cairo
49 - x11-libs/libX11
50 - ayatana? ( dev-libs/libappindicator:3 )
51 - lastfm? ( net-libs/libsoup:2.4 )
52 - lyrics? ( net-libs/libsoup:2.4
53 - dev-libs/libxml2:2 )"
54 -DEPEND="${RDEPEND}
55 - $(vala_depend)
56 - dev-util/intltool
57 - virtual/pkgconfig
58 - gnome-base/gnome-common:3
59 - >=sys-devel/autoconf-2.67:2.5
60 - sys-devel/gettext"
61 -
62 -DOCS=( AUTHORS README )
63 -
64 -src_prepare() {
65 - NOCONFIGURE=yes ./autogen.sh || die
66 - vala_src_prepare
67 -}
68 -
69 -src_configure() {
70 - econf \
71 - $(use_enable ayatana appindicator) \
72 - $(use_enable lyrics lyricwiki) \
73 - $(use_enable lastfm) \
74 - --enable-mpris \
75 - --enable-soundmenu2 \
76 - --enable-mediakeys \
77 - $(use_enable lyrics chartlyrics) \
78 - $(use_enable lyrics azlyrics) \
79 - --enable-magnatune
80 -}
81 -
82 -src_install() {
83 - default
84 - find "${ED}" -type f -name "*.la" -delete || die
85 - rm -rf "${ED}"/usr/share/${PN}/license || die
86 -}
87 -
88 -pkg_preinst() {
89 - gnome2_icon_savelist
90 -}
91 -
92 -pkg_postinst() {
93 - xdg_desktop_database_update
94 - gnome2_icon_cache_update
95 -}
96 -
97 -pkg_postrm() {
98 - xdg_desktop_database_update
99 - gnome2_icon_cache_update
100 -}