blob: b91eefbc5398570ac0b5ddd8a72e701d1ced8798 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# 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
}
|