blob: c66f2866e35df40808ae0fae96aa691c64608d9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Distributed under the terms of the GNU General Public License v2=
EAPI="5"
DEADBEEF_GUI="yes"
inherit deadbeef-plugins git-r3
DESCRIPTION="DeaDBeeF replay gain control plugin"
HOMEPAGE="https://github.com/cboxdoerfer/ddb_replaygain_control"
EGIT_REPO_URI="https://github.com/cboxdoerfer/ddb_replaygain_control.git"
LICENSE="GPL-2"
KEYWORDS=""
src_prepare() {
epatch "${FILESDIR}/${PN}-cflags.patch"
}
src_compile() {
use gtk2 && emake gtk2
use gtk3 && emake gtk3
}
|