2020-07-09 03:55:54 -04:00
|
|
|
# Copyright 2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit cmake
|
|
|
|
|
|
|
|
SRC_URI="mirror://sourceforge/eq10q/${P}.tar.gz"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
|
|
|
|
DESCRIPTION="Audio plugin bundle over the LV2 standard for Linux"
|
|
|
|
HOMEPAGE="http://eq10q.sourceforge.net/"
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
DEPEND="
|
|
|
|
dev-cpp/gtkmm:2.4
|
|
|
|
media-libs/lv2
|
|
|
|
>=sci-libs/fftw-3
|
|
|
|
"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND="
|
|
|
|
virtual/pkgconfig
|
|
|
|
"
|
|
|
|
PATCHES=(
|
|
|
|
"${FILESDIR}/replace_pow10.patch"
|
2020-09-17 15:52:35 -04:00
|
|
|
"${FILESDIR}/fix_lv2.patch"
|
2020-07-09 03:55:54 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
local mycmakeargs=(
|
|
|
|
"-DCMAKE_INSTALL_PREFIX=/usr/$(get_libdir)/lv2"
|
|
|
|
)
|
|
|
|
cmake_src_configure
|
|
|
|
}
|