mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sci-libs/libqalculate: add 4.7.0
Signed-off-by: Andrew Udvare <audvare@gmail.com> Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
This commit is contained in:
committed by
Andrew Ammerlaan
parent
31f584392c
commit
3545ef5011
@@ -1,2 +1,3 @@
|
||||
DIST libqalculate-4.5.0.tar.gz 2603599 BLAKE2B 142790cf89e97c601b08d553b1f9cd6c1bf184a43c2614a07fa91560a875ea3e3124cf29d7652640b1f2fb4fada1519d48e4cb0ebcfb844c26369d3031aee230 SHA512 a123eaa725c6c6badce0eceecd6ef7e37ca281e7de18085d6a28aa6043bb3f1069f9ebba82b29989c9958455aa093ee183fd8013a86b39bd34e56454bdb35770
|
||||
DIST libqalculate-4.6.1.tar.gz 2610769 BLAKE2B 02ad7371c537bf40d98bb1b32877f0a39394b0723c45e53b00381df2d0d326b79ab39c66238a8e3a89f10aa093f6c12bcc5ae0457f6d65503fb3712a78bb0dfc SHA512 7f03e0f8cc87918b8ec962ce8c85840b644aad02cdd53037d41602198cdcb6567099d175771ff3752fc99fccbc4b180527da5fef68b0059bd1b259c34c57620e
|
||||
DIST libqalculate-4.7.0.tar.gz 2618347 BLAKE2B 1ec01e124d9c96a2651f3e2a82a4eb8ae771b2701d3fd2be0894666e37eccf1e15e779ccfb96ff866c3e3d5a625ca8884961b505f30d34310be1efe69f0ba1d1 SHA512 d72754f00e26daa0afc1357cc30571b5dae28d7f5f79bcdba2f159644216288df20e5a518457fb244fd3057935f7d800a3e95bdf0f04929353841cc8371be138
|
||||
|
||||
79
sci-libs/libqalculate/libqalculate-4.7.0.ebuild
Normal file
79
sci-libs/libqalculate/libqalculate-4.7.0.ebuild
Normal file
@@ -0,0 +1,79 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
# Bump with sci-calculators/qalculate-gtk!
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="A modern multi-purpose calculator library"
|
||||
HOMEPAGE="https://qalculate.github.io/"
|
||||
SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
# SONAME changes pretty often on bumps. Check!
|
||||
SLOT="0/22"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="curl icu gnuplot +hardened readline test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DEPEND="dev-libs/gmp:=
|
||||
dev-libs/libxml2:2
|
||||
dev-libs/mpfr:=
|
||||
virtual/libiconv
|
||||
curl? ( net-misc/curl )
|
||||
icu? ( dev-libs/icu:= )
|
||||
readline? ( sys-libs/readline:= )"
|
||||
RDEPEND="${DEPEND}
|
||||
gnuplot? ( >=sci-visualization/gnuplot-3.7 )"
|
||||
BDEPEND="dev-util/intltool
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
cat >po/POTFILES.skip <<-EOF || die
|
||||
# Required by make check
|
||||
data/currencies.xml.in
|
||||
data/datasets.xml.in
|
||||
data/elements.xml.in
|
||||
data/functions.xml.in
|
||||
data/planets.xml.in
|
||||
data/prefixes.xml.in
|
||||
data/units.xml.in
|
||||
data/variables.xml.in
|
||||
src/defs2doc.cc
|
||||
EOF
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# Needed for po-defs/Makefile
|
||||
export CXX_FOR_BUILD="$(tc-getBUILD_CXX)"
|
||||
export CXXCPP_FOR_BUILD="$(tc-getBUILD_CXX) -E"
|
||||
|
||||
# bug #792027
|
||||
tc-export CC
|
||||
|
||||
econf \
|
||||
$(use_enable test tests) \
|
||||
$(use_enable test unittests) \
|
||||
$(use_with curl libcurl) \
|
||||
$(use_with gnuplot gnuplot-call) \
|
||||
$(use_enable !hardened insecure) \
|
||||
$(use_with icu) \
|
||||
$(use_with readline)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# docs/reference/Makefile.am -> referencedir=
|
||||
emake \
|
||||
DESTDIR="${D}" \
|
||||
referencedir="${EPREFIX}/usr/share/doc/${PF}/html" \
|
||||
install
|
||||
|
||||
einstalldocs
|
||||
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
}
|
||||
Reference in New Issue
Block a user