diff options
author | Joonas Niilola <juippis@gentoo.org> | 2020-02-01 09:40:14 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-02-01 09:41:57 +0200 |
commit | 856ba3ac14d9e0b770ec5d044ea3db97710390b6 (patch) | |
tree | 56883381a8dba326d0a54a32b4527eab5f47b1c7 /sci-mathematics/nestedsums | |
parent | dev-ruby/ox: add 2.13.1 (diff) | |
download | gentoo-856ba3ac14d9e0b770ec5d044ea3db97710390b6.tar.gz gentoo-856ba3ac14d9e0b770ec5d044ea3db97710390b6.tar.bz2 gentoo-856ba3ac14d9e0b770ec5d044ea3db97710390b6.zip |
sci-mathematics/nestedsums: fix CI issues
Non-maintainer commit, I want my tree synced.
- fix BannedEapiCommand CI issue,
- fix MissingSlash tree issue,
- introduce BDEPEND,
- modernize ebuild with HTML_DOCS and 'default' calls.
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sci-mathematics/nestedsums')
-rw-r--r-- | sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild b/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild index e0eff2517d56..86a84599f41c 100644 --- a/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild +++ b/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild @@ -13,8 +13,8 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND=">=sci-mathematics/ginac-1.7" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" +DEPEND="${RDEPEND}" +BDEPEND="doc? ( app-doc/doxygen )" src_compile() { default @@ -29,11 +29,7 @@ src_test() { } src_install() { - emake DESTDIR="${D}" install - rm -f "${D}"usr/lib/*.la - dodoc AUTHORS ChangeLog - - if use doc; then - dohtml reference/html/* - fi + use doc && local HTML_DOCS=( reference/html/. ) + default + find "${D}" -name '*.la' -type f -delete || die } |