diff options
author | David Seifert <soap@gentoo.org> | 2022-07-07 22:19:50 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-07-07 22:19:50 +0200 |
commit | fdfec6fb092338f5e4e62c5339f9afc4e10cc595 (patch) | |
tree | 7197d3a882f5016877a9c7d5a7bf68df843ef8fc /sci-mathematics/mathomatic | |
parent | app-editors/vim: Sync live ebuild (diff) | |
download | gentoo-fdfec6fb092338f5e4e62c5339f9afc4e10cc595.tar.gz gentoo-fdfec6fb092338f5e4e62c5339f9afc4e10cc595.tar.bz2 gentoo-fdfec6fb092338f5e4e62c5339f9afc4e10cc595.zip |
sci-mathematics/mathomatic: update EAPI 6 -> 8
Closes: https://bugs.gentoo.org/805899
Closes: https://bugs.gentoo.org/810325
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-mathematics/mathomatic')
-rw-r--r-- | sci-mathematics/mathomatic/mathomatic-16.0.5-r1.ebuild (renamed from sci-mathematics/mathomatic/mathomatic-16.0.5.ebuild) | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/sci-mathematics/mathomatic/mathomatic-16.0.5.ebuild b/sci-mathematics/mathomatic/mathomatic-16.0.5-r1.ebuild index 62548fef00cb..d16b05048391 100644 --- a/sci-mathematics/mathomatic/mathomatic-16.0.5.ebuild +++ b/sci-mathematics/mathomatic/mathomatic-16.0.5-r1.ebuild @@ -1,29 +1,32 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + inherit toolchain-funcs flag-o-matic DESCRIPTION="Automatic algebraic manipulator" HOMEPAGE="https://github.com/mfillpot/mathomatic" SRC_URI="https://github.com/mfillpot/mathomatic/archive/${P}.tar.gz" +S="${WORKDIR}/${PN}-${P}" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux" IUSE="doc gnuplot" -DEPEND="sys-libs/readline:= +DEPEND=" + sys-libs/readline:= sys-libs/ncurses:=" RDEPEND="${DEPEND} gnuplot? ( sci-visualization/gnuplot )" - -S="${WORKDIR}/${PN}-${P}" +BDEPEND="doc? ( app-text/htmldoc )" src_compile() { append-cflags -DBOLD_COLOR=1 emake READLINE=1 CC="$(tc-getCC)" emake CC="$(tc-getCC)" -C primes + use doc && emake pdf } src_test() { @@ -32,12 +35,15 @@ src_test() { } src_install() { - emake prefix="${EPREFIX}/usr" DESTDIR="${D}" bininstall m4install - emake prefix="${EPREFIX}/usr" DESTDIR="${D}" -C primes install + emake DESTDIR="${D}" prefix="${EPREFIX}"/usr \ + mathdocdir="${EPREFIX}"/usr/share/doc/${PF} \ + bininstall m4install + emake DESTDIR="${D}" prefix="${EPREFIX}"/usr -C primes install dodoc changes.txt README.txt AUTHORS newdoc primes/README.txt README-primes.txt use doc && emake \ - prefix="${EPREFIX}/usr" \ - mathdocdir="${EPREFIX}/usr/share/doc/${PF}" \ - DESTDIR="${D}" docinstall + DESTDIR="${D}" \ + prefix="${EPREFIX}"/usr \ + mathdocdir="${EPREFIX}"/usr/share/doc/${PF} \ + docinstall } |