diff options
author | Michael Palimaka <kensington@gentoo.org> | 2018-11-11 14:51:01 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2018-11-11 14:51:58 +1100 |
commit | c4bf5de43d820b612d9ca36eb5c010fa4265b71a (patch) | |
tree | 1bdb9c44bb2aa5546c5ca06343e04ba8e3743c5c /sci-libs/libqalculate/libqalculate-2.8.1.ebuild | |
parent | sys-kernel/gentoo-sources: Dropping due to missing patch (diff) | |
download | gentoo-c4bf5de43d820b612d9ca36eb5c010fa4265b71a.tar.gz gentoo-c4bf5de43d820b612d9ca36eb5c010fa4265b71a.tar.bz2 gentoo-c4bf5de43d820b612d9ca36eb5c010fa4265b71a.zip |
sci-libs/libqalculate: version bump 2.8.1
Closes: https://bugs.gentoo.org/655002
Closes: https://bugs.gentoo.org/651272
Closes: https://bugs.gentoo.org/668480
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Michael Palimaka <kensington@gentoo.org>
Diffstat (limited to 'sci-libs/libqalculate/libqalculate-2.8.1.ebuild')
-rw-r--r-- | sci-libs/libqalculate/libqalculate-2.8.1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/sci-libs/libqalculate/libqalculate-2.8.1.ebuild b/sci-libs/libqalculate/libqalculate-2.8.1.ebuild new file mode 100644 index 000000000000..a06b1b5b5e12 --- /dev/null +++ b/sci-libs/libqalculate/libqalculate-2.8.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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" +SLOT="0/20" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="curl icu gnuplot readline static-libs" + +COMMON_DEPEND=" + dev-libs/gmp:0= + dev-libs/libxml2:2 + dev-libs/mpfr:0= + virtual/libiconv + curl? ( net-misc/curl ) + icu? ( dev-libs/icu:= ) + readline? ( sys-libs/readline:0= )" +DEPEND="${COMMON_DEPEND} + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" +RDEPEND="${COMMON_DEPEND} + gnuplot? ( >=sci-visualization/gnuplot-3.7 )" + +src_prepare() { + default + + cat >po/POTFILES.skip <<-EOF + # 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/units.xml.in + data/variables.xml.in + src/defs2doc.cc + EOF +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_with curl libcurl) \ + $(use_with icu) \ + $(use_with readline) +} + +src_install() { + # docs/reference/Makefile.am -> referencedir= + emake \ + DESTDIR="${D}" \ + referencedir="${EPREFIX}/usr/share/doc/${PF}/html" \ + install + + dodoc AUTHORS ChangeLog NEWS README* TODO + + find "${ED}" -name '*.la' -delete || die +} |