# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 inherit eutils git-r3 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. EGIT_REPO_URI="https://gitlab.com/pholy/OSCAR-code.git" EGIT_BRANCH="master" LICENSE="GPL-3" SLOT="0" KEYWORDS="" IUSE="debug" 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}" #src_unpack() { # unpack ${A} # cd "${S}" #} src_prepare() { default cd "${S}" eqmake5 OSCAR_QT.pro } src_install() { cd "${S}/oscar" dobin OSCAR || die dodoc ../README || die dodoc docs/* || die }