blob: a1680aa9b926b7ae1d64a653203ecb0225a48748 (
plain) (
blame)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="audio plugin bundle implementing a powerful and flexible parametric equalizer and more"
HOMEPAGE="http://eq10q.sourceforge.net/"
SRC_URI="https://sourceforge.net/projects/${PN}/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
PATCHES=(
"${FILESDIR}/${P}-lv2.patch"
"${FILESDIR}/${P}-pow10.patch"
)
RDEPEND=">=media-libs/lv2-1.18.8
>=dev-cpp/gtkmm-3.24.6
>=sci-libs/fftw-3.3.10"
DEPEND="${RDEPEND}"
BDEPEND="dev-util/cmake
virtual/pkgconfig"
src_prepare() {
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(-DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/$(get_libdir)/lv2")
cmake_src_configure
}
|