gentoo/sci-calculators/qalculate-qt/qalculate-qt-5.8.0.ebuild
Christopher Fore 083e95a0e1
sci-calculators/qalculate-qt: add 5.8.0
Signed-off-by: Christopher Fore <csfore@posteo.net>
Part-of: https://github.com/gentoo/gentoo/pull/44164
Closes: https://github.com/gentoo/gentoo/pull/44164
Signed-off-by: Nowa Ammerlaan <nowa@gentoo.org>
2025-10-14 18:06:31 +02:00

38 lines
798 B
Bash

# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# Bump with sci-libs/libqalculate and sci-calculators/qalculate-gtk!
inherit optfeature qmake-utils xdg
DESCRIPTION="Qt-based UI for libqalculate"
HOMEPAGE="https://github.com/Qalculate/qalculate-qt"
SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
DEPEND="
dev-qt/qtbase:6[gui,network,widgets]
>=sci-libs/libqalculate-${PV}:=
"
RDEPEND="${DEPEND}"
BDEPEND="dev-qt/qttools:6[linguist]"
src_configure() {
eqmake6 PREFIX="${EPREFIX}/usr"
}
src_install() {
emake INSTALL_ROOT="${ED}" install
}
pkg_postinst() {
xdg_pkg_postinst
optfeature "gnuplot support" sci-libs/libqalculate[gnuplot]
}