mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 07:01:08 +00:00
Signed-off-by: Christopher Fore <csfore@posteo.net> Part-of: https://github.com/gentoo/gentoo/pull/44164 Signed-off-by: Nowa Ammerlaan <nowa@gentoo.org>
45 lines
1 KiB
Bash
45 lines
1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
# Note: bump with sci-libs/libqalculate and sci-calculators/qalculate-qt!
|
|
|
|
inherit optfeature xdg
|
|
|
|
DESCRIPTION="Modern multi-purpose calculator"
|
|
HOMEPAGE="https://qalculate.github.io/"
|
|
SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
|
|
|
RDEPEND="dev-libs/glib:2
|
|
>=sci-libs/libqalculate-${PV}:=
|
|
x11-libs/cairo
|
|
x11-libs/gdk-pixbuf
|
|
x11-libs/gtk+:3
|
|
x11-libs/pango"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="dev-util/gdbus-codegen
|
|
dev-util/intltool
|
|
sys-devel/gettext
|
|
virtual/pkgconfig"
|
|
|
|
src_prepare() {
|
|
# Required by src_test() and `make check`
|
|
cat >po/POTFILES.skip <<-EOF || die
|
|
# Required by make check
|
|
data/calendarconversion.ui
|
|
data/periodictable.ui
|
|
EOF
|
|
|
|
default
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_pkg_postinst
|
|
|
|
optfeature "gnuplot support" sci-libs/libqalculate[gnuplot]
|
|
}
|