blob: b066432ff7aa2835e264efcd87de94f245f43722 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Simple GUI XMMS2 client with minimal functionality"
HOMEPAGE="https://wiki.lxde.org/en/LXMusic"
SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-libs/glib:2
media-sound/xmms2
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3
x11-libs/libnotify"
DEPEND="${RDEPEND}"
BDEPEND="
sys-devel/gettext
virtual/pkgconfig"
src_configure() {
econf --enable-gtk3
}
|