blob: c2ff3fbbf933e50017d169e23393c0caa5c33108 (
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
|
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
DEADBEEF_GUI="yes"
inherit autotools deadbeef-plugins git-r3
DESCRIPTION="DeaDBeeF filebrowser plugin that resemble foobar2k music library"
HOMEPAGE="https://github.com/JesseFarebro/deadbeef-librarybrowser"
EGIT_REPO_URI="https://github.com/JesseFarebro/${PN}.git"
LICENSE="GPL-2"
KEYWORDS=""
RDEPEND+=" !media-plugins/deadbeef-fb:0"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}/${PN}-avoid-version.patch"
eautoreconf
}
src_configure() {
econf --disable-static \
$(use_enable gtk2) \
$(use_enable gtk3)
}
|