diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-11-16 12:16:06 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-11-16 13:56:30 -0500 |
commit | 3e94d264f38352c629af983b9ac7a2c5c6c3c6ae (patch) | |
tree | 43fc1c86b525c81efe1184b0f5acccedb1648c7d /media-sound/lxmusic | |
parent | app-emulation/wine-staging: drop 7.17 (diff) | |
download | gentoo-3e94d264f38352c629af983b9ac7a2c5c6c3c6ae.tar.gz gentoo-3e94d264f38352c629af983b9ac7a2c5c6c3c6ae.tar.bz2 gentoo-3e94d264f38352c629af983b9ac7a2c5c6c3c6ae.zip |
media-sound/lxmusic: switch to gtk+:3
Also add a few missing deps and fix license,
this seems to work fine still.
Closes: https://bugs.gentoo.org/881457
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'media-sound/lxmusic')
-rw-r--r-- | media-sound/lxmusic/lxmusic-0.4.7-r2.ebuild (renamed from media-sound/lxmusic/lxmusic-0.4.7-r1.ebuild) | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/media-sound/lxmusic/lxmusic-0.4.7-r1.ebuild b/media-sound/lxmusic/lxmusic-0.4.7-r2.ebuild index ed8935bba257..b066432ff7aa 100644 --- a/media-sound/lxmusic/lxmusic-0.4.7-r1.ebuild +++ b/media-sound/lxmusic/lxmusic-0.4.7-r2.ebuild @@ -3,17 +3,25 @@ EAPI=8 -DESCRIPTION="A simple GUI XMMS2 client with minimal functionality" +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" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND=" + dev-libs/glib:2 media-sound/xmms2 - x11-libs/gtk+:2 + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 x11-libs/libnotify" DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig" + +src_configure() { + econf --enable-gtk3 +} |