mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
62 lines
1.1 KiB
Bash
62 lines
1.1 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit qmake-utils
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/molke-productions/${PN}"
|
|
fi
|
|
|
|
DESCRIPTION="Tool to measure loudspeaker frequency and step responses and distortions"
|
|
HOMEPAGE="https://github.com/molke-productions/qloud"
|
|
|
|
if [[ "${PV}" != "9999" ]]; then
|
|
SRC_URI="https://github.com/molke-productions/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
fi
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RESTRICT="test"
|
|
|
|
BDEPEND="
|
|
dev-qt/qttools:6[linguist]
|
|
"
|
|
## x11-libs/qwt:6 to be removed in the near future
|
|
RDEPEND="
|
|
dev-qt/qtcharts:6
|
|
dev-qt/qtbase:6[gui,widgets,xml]
|
|
media-libs/libsndfile
|
|
sci-libs/fftw:3.0
|
|
virtual/jack
|
|
|
|
x11-libs/qwt:6
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -e "s!/usr/local!${EPREFIX}/usr!" \
|
|
-i config.pri || die
|
|
|
|
sed -e "s!/usr/include/qwt!${EPREFIX}/usr/include/qwt6!" \
|
|
-i src/src.pro || die
|
|
|
|
sed -e "s!-lqwt!-lqwt6-qt5!" \
|
|
-i src/src.pro || die
|
|
}
|
|
|
|
src_configure() {
|
|
eqmake6
|
|
}
|
|
|
|
src_install() {
|
|
emake INSTALL_ROOT="${D}" install
|
|
}
|