mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
media-sound/xnoise: treeclean
Closes: https://bugs.gentoo.org/740484 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
This commit is contained in:
@@ -1 +0,0 @@
|
||||
DIST xnoise-0.2.21.tar.gz 3222030 BLAKE2B c58561f4e042ccf7d7fdeb271801ccc2d447138cf5c1afb2f8f0bb098135d957aa289799e59f2c96a76a01ccfeeb9574d87f0d987b1e3ace9d22a3ced8ec88b9 SHA512 e25f42795638a5b93f1922f1c761b0bdaf754414dfa0f7172407e0d10514c52844d0dc3146a32f93e6107a0b5bb0f8e9e5d098954e9659f28177c56f607d9851
|
||||
@@ -1,54 +0,0 @@
|
||||
--- a/data/misc/xnoise.desktop.in
|
||||
+++ b/data/misc/xnoise.desktop.in
|
||||
@@ -16,24 +16,19 @@
|
||||
[Desktop Action Play]
|
||||
_Name=Play/Pause
|
||||
Exec=xnoise --play-pause
|
||||
-OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action Stop]
|
||||
_Name=Stop
|
||||
Exec=xnoise --stop
|
||||
-OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action Next]
|
||||
_Name=Goto next track
|
||||
Exec=xnoise --next
|
||||
-OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action Previous]
|
||||
_Name=Goto previous track
|
||||
Exec=xnoise --previous
|
||||
-OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action Quit]
|
||||
_Name=Quit application
|
||||
Exec=xnoise --quit
|
||||
-OnlyShowIn=Unity;
|
||||
--- a/data/misc/xnoise.desktop.in.in
|
||||
+++ b/data/misc/xnoise.desktop.in.in
|
||||
@@ -16,24 +16,19 @@
|
||||
[Desktop Action Play]
|
||||
_Name=Play/Pause
|
||||
Exec=xnoise --play-pause
|
||||
-OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action Stop]
|
||||
_Name=Stop
|
||||
Exec=xnoise --stop
|
||||
-OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action Next]
|
||||
_Name=Goto next track
|
||||
Exec=xnoise --next
|
||||
-OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action Previous]
|
||||
_Name=Goto previous track
|
||||
Exec=xnoise --previous
|
||||
-OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action Quit]
|
||||
_Name=Quit application
|
||||
Exec=xnoise --quit
|
||||
-OnlyShowIn=Unity;
|
||||
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>sound@gentoo.org</email>
|
||||
<name>Gentoo Sound project</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="lastfm">Enable support for lastfm cover art fetching and scrobbling</flag>
|
||||
<flag name="lyrics">Enable support for lyrics fetching</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="bitbucket">shuerhaaken/xnoise</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,61 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit xdg
|
||||
|
||||
DESCRIPTION="A media player for Gtk+ with a slick GUI, great speed and lots of features"
|
||||
HOMEPAGE="http://www.xnoise-media-player.com/"
|
||||
SRC_URI="https://www.bitbucket.org/shuerhaaken/${PN}/downloads/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="appindicator +lastfm +lyrics"
|
||||
|
||||
RDEPEND="
|
||||
dev-db/sqlite:3=
|
||||
dev-libs/glib:2
|
||||
gnome-base/librsvg:2
|
||||
media-libs/gstreamer:1.0=
|
||||
media-libs/gst-plugins-base:1.0=
|
||||
media-libs/libtaginfo:=
|
||||
media-plugins/gst-plugins-meta:1.0
|
||||
x11-libs/cairo:=
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libX11
|
||||
appindicator? ( dev-libs/libappindicator:3= )
|
||||
lastfm? ( net-libs/libsoup:2.4= )
|
||||
lyrics? (
|
||||
net-libs/libsoup:2.4=
|
||||
dev-libs/libxml2:2=
|
||||
)"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
dev-util/intltool
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig"
|
||||
|
||||
PATCHES=( "${FILESDIR}"/${PN}-0.2.21-QA-fix-desktop-file.patch )
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--enable-magnatune \
|
||||
--enable-mediakeys \
|
||||
--enable-mpris \
|
||||
--enable-soundmenu2 \
|
||||
$(use_enable appindicator) \
|
||||
$(use_enable lastfm) \
|
||||
$(use_enable lyrics lyricwiki) \
|
||||
$(use_enable lyrics chartlyrics) \
|
||||
$(use_enable lyrics azlyrics)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
rm -rf "${ED}"/usr/share/${PN}/license || die
|
||||
|
||||
# no static archives
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
}
|
||||
@@ -348,7 +348,6 @@ net-im/gg-transport
|
||||
# no other major distro carries this anymore.
|
||||
# Bug #631320, #740484, #830090, #836278, removal on 2022-04-26.
|
||||
media-libs/libtaginfo
|
||||
media-sound/xnoise
|
||||
|
||||
# David Seifert <soap@gentoo.org> (2022-03-20)
|
||||
# Mask gcc-8 branch (ended upstream support). Please switch
|
||||
|
||||
Reference in New Issue
Block a user