# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 inherit eutils qmake-utils DESCRIPTION="Software used to analyze data from CPAP machines" HOMEPAGE="https://www.sleepfiles.com/OSCAR/" # Point to any required sources; these will be automatically downloaded by # Portage. SRC_URI="https://gitlab.com/pholy/OSCAR-code/-/archive/v1.1.0-testing-3/OSCAR-code-v1.1.0-testing-3.tar.bz2 -> ${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND="virtual/opengl x11-libs/libX11 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtserialport:5 virtual/glu" RDEPEND="${DEPEND}" S="${WORKDIR}/OSCAR-code-v1.1.0-testing-3" src_unpack() { unpack ${A} cd "${S}" } src_prepare() { cd "${S}" eapply_user eqmake5 OSCAR_QT.pro } src_install() { cd "${S}/oscar" dobin OSCAR || die dodoc ../README || die dodoc docs/* || die }