summaryrefslogtreecommitdiff
path: root/sci-mathematics/nestedsums
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-02-13 21:41:11 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-02-13 21:41:11 +0000
commitc8d60dada2ec8eb48b2d2b290cd6683ccec40e39 (patch)
treec44943ee0563a3fa957716de909fed683117fcb9 /sci-mathematics/nestedsums
parent69051588e2f955485fe5d45d45e616bc60a2de57 (diff)
gentoo (valentine's day) resync : 14.02.2021
Diffstat (limited to 'sci-mathematics/nestedsums')
-rw-r--r--sci-mathematics/nestedsums/Manifest2
-rw-r--r--sci-mathematics/nestedsums/nestedsums-1.5.2-r1.ebuild31
2 files changed, 13 insertions, 20 deletions
diff --git a/sci-mathematics/nestedsums/Manifest b/sci-mathematics/nestedsums/Manifest
index f28e1f25897b..19f9bbd1bd75 100644
--- a/sci-mathematics/nestedsums/Manifest
+++ b/sci-mathematics/nestedsums/Manifest
@@ -1,3 +1,3 @@
DIST nestedsums-1.5.2.tar.gz 511806 BLAKE2B 9c40f4b3405134ea058aad356e131b29f7f0a058b68ed3081bbcc51d451e850bccd8ec26448a8ac391524913da7eccbce4fae1b9e4119c8692b8fca59a17d885 SHA512 2b7dd54e02695a741bbe8cc0b45a3804dc7c1cb6d0b46ad7c152489e952718b438b84d60b844ff0ed92b32c78186dac2d4ee8e705ad82f965bbec923c1970d33
-EBUILD nestedsums-1.5.2-r1.ebuild 996 BLAKE2B 859641ac39630571df447b112d3e2a85afd9e2a75b42f68c25cf946aabfc69df6e9a24bb419b3309a2ebd265e009c04aa6c95531bdfcb07b7b47ebf21a01d85e SHA512 1b56798b8eb0f3dde04b62e9d7a6250c2687a95dc17e45ffa8c33325d604a68c7ab94f05f80c2bb264181ff347892e8759bb4c5ce40e663c067e9d54d16cb51e
+EBUILD nestedsums-1.5.2-r1.ebuild 818 BLAKE2B 6514285ad73d50a6fdc94a6cdcfd6a0c86b41de234809240dea3cace5f95d0a4b42938aa42b5929704ee6aafbb295cbe1b585ff2e48627e1a4b7ace4c6136630 SHA512 c3e297b7cf67abd318176db5966dcdad56ab7dabf20ea26c2d2569f86ab92ad64e7cc05cc18a992740fe60d11e82bfe35f093b5be9ea528633c295baf68f90bb
MISC metadata.xml 372 BLAKE2B d589eae4a189062cd16fdf18c36e36ba8816cc9e6c50945693296b755151e3e0db0e15715f1f08cf330ddd47330c9a36b4fe3460452e3bb97ae9ee3c7d280d22 SHA512 76123e8eaa43ad123a54600811325333ebe9306cebe4868f24af23928ab375df5a222b2e8ebab9247fc05fde2f90caf3b57e45fbcf2fbc90e6dd79df28862626
diff --git a/sci-mathematics/nestedsums/nestedsums-1.5.2-r1.ebuild b/sci-mathematics/nestedsums/nestedsums-1.5.2-r1.ebuild
index 99a09d617d4b..862b5e97fa20 100644
--- a/sci-mathematics/nestedsums/nestedsums-1.5.2-r1.ebuild
+++ b/sci-mathematics/nestedsums/nestedsums-1.5.2-r1.ebuild
@@ -1,24 +1,26 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit multilib flag-o-matic
+inherit flag-o-matic
DESCRIPTION="A GiNaC-based library for symbolic expansion of certain transcendental functions"
HOMEPAGE="https://particlephysics.uni-mainz.de/weinzierl/nestedsums/"
-IUSE="doc static-libs"
SRC_URI="http://particlephysics.uni-mainz.de/weinzierl/download/${P}.tar.gz"
+
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-RDEPEND=">=sci-mathematics/ginac-1.7[static-libs=]"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
+IUSE="doc"
+
+RDEPEND=">=sci-mathematics/ginac-1.7"
+DEPEND="${RDEPEND}"
+BDEPEND="doc? ( app-doc/doxygen )"
src_configure() {
append-cxxflags -std=c++14
- econf $(use_enable static-libs static)
+ econf --disable-static
}
src_compile() {
@@ -26,20 +28,11 @@ src_compile() {
if use doc; then
doxygen Doxyfile || die "generating documentation failed"
+ HTML_DOCS=( reference/html/. )
fi
}
-src_test() {
- emake check
-}
-
src_install() {
- emake DESTDIR="${D}" install
- rm "${D}"/usr/$(get_libdir)/lib${PN}.la || die "cannot rm lib${PN}.la"
- dodoc AUTHORS ChangeLog
-
- if use doc; then
- docinto html
- dodoc -r reference/html/.
- fi
+ default
+ find "${ED}" -name '*.la' -delete || die
}