# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit qmake-utils DESCRIPTION="QML port of x11-libs/qtermwidget" HOMEPAGE="https://github.com/Swordfish90/qmltermwidget" if [[ ${PV} == "9999" ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/Swordfish90/${PN}" else SRC_URI="https://github.com/Swordfish90/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~x86" fi LICENSE="BSD" SLOT="0" DEPEND=" dev-qt/qtdeclarative:5= dev-qt/qtwidgets:5= " RDEPEND="${DEPEND}" src_configure(){ # local myeqmakeargs=() eqmake5 ${myeqmakeargs[@]} } src_install(){ emake INSTALL_ROOT="${D}" install || die }