blob: 12f794baf0651b28ffaf83b80a849237737a260e (
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
|
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
DEADBEEF_GUI="yes"
inherit deadbeef-plugins git-r3
DESCRIPTION="DeaDBeeF spectrogram plugin"
HOMEPAGE="https://github.com/cboxdoerfer/ddb_spectrogram"
EGIT_REPO_URI="https://github.com/cboxdoerfer/ddb_spectrogram.git"
LICENSE="GPL-2"
KEYWORDS=""
RDEPEND+=" sci-libs/fftw:3.0="
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}/${PN}-cflags.patch"
}
src_compile() {
use gtk2 && emake gtk2
use gtk3 && emake gtk3
}
|