diff options
author | François Bissey <frp.bissey@gmail.com> | 2021-01-16 14:56:15 +1300 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2021-01-15 21:04:19 -0500 |
commit | 0ce883cd2deb8e009ae421d57d1da1f31bfa541d (patch) | |
tree | b605526e198ee6a020d4101db1add7c3b00d58e9 /sci-libs | |
parent | sci-libs/camd: fix bashism in doc building (diff) | |
download | gentoo-0ce883cd2deb8e009ae421d57d1da1f31bfa541d.tar.gz gentoo-0ce883cd2deb8e009ae421d57d1da1f31bfa541d.tar.bz2 gentoo-0ce883cd2deb8e009ae421d57d1da1f31bfa541d.zip |
sci-libs/klu: fix bashism in doc building, remove la file
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Closes: https://bugs.gentoo.org/760408
Closes: https://github.com/gentoo/gentoo/pull/19063
Signed-off-by: François René Pierre Bissey <frp.bissey@gmail.com>
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/klu/files/klu-1.3.9-dash_doc.patch | 27 | ||||
-rw-r--r-- | sci-libs/klu/klu-1.3.9-r1.ebuild | 44 |
2 files changed, 71 insertions, 0 deletions
diff --git a/sci-libs/klu/files/klu-1.3.9-dash_doc.patch b/sci-libs/klu/files/klu-1.3.9-dash_doc.patch new file mode 100644 index 000000000000..1f7bc8edfe10 --- /dev/null +++ b/sci-libs/klu/files/klu-1.3.9-dash_doc.patch @@ -0,0 +1,27 @@ +diff --git a/Doc/Makefile.am b/Doc/Makefile.am +index 7d1116a..fd46b1d 100644 +--- a/Doc/Makefile.am ++++ b/Doc/Makefile.am +@@ -1,15 +1,14 @@ + + KLU_UserGuide.pdf: +- echo '\begin{verbatim}' > klu_h.tex ++ printf '\\begin{verbatim}\n' > klu_h.tex + expand -8 $(top_srcdir)/Include/klu.h >> klu_h.tex +- echo '\end{verbatim}' >> klu_h.tex +- echo '\begin{verbatim}' > btf_h.tex +- echo 'See your btf.h local install' >> btf_h.tex +- echo '\end{verbatim}' >> btf_h.tex +- echo '\begin{verbatim}' > klu_simple_c.tex ++ printf '\\end{verbatim}\n' >> klu_h.tex ++ printf '\\begin{verbatim}\n' > btf_h.tex ++ printf 'See your btf.h local install\n' >> btf_h.tex ++ printf '\\end{verbatim}\n' >> btf_h.tex ++ printf '\\begin{verbatim}\n' > klu_simple_c.tex + expand -8 $(top_srcdir)/Demo/klu_simple.c >> klu_simple_c.tex +- echo '\end{verbatim}' >> klu_simple_c.tex +- -ln -s $(srcdir)/*.{tex,bib} . ++ printf '\\end{verbatim}\n' >> klu_simple_c.tex + $(PDFLATEX) KLU_UserGuide + $(BIBTEX) KLU_UserGuide + $(PDFLATEX) KLU_UserGuide diff --git a/sci-libs/klu/klu-1.3.9-r1.ebuild b/sci-libs/klu/klu-1.3.9-r1.ebuild new file mode 100644 index 000000000000..971207fad7c7 --- /dev/null +++ b/sci-libs/klu/klu-1.3.9-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Sparse LU factorization for circuit simulation" +HOMEPAGE="http://faculty.cse.tamu.edu/davis/suitesparse.html" +SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="doc static-libs" + +BDEPEND="virtual/pkgconfig + doc? ( virtual/latex-base )" +DEPEND=" + >=sci-libs/amd-2.4 + >=sci-libs/btf-1.2 + >=sci-libs/colamd-2.9" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/${PN}-1.3.9-dash_doc.patch ) + +src_prepare(){ + default + + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_with doc) +} + +src_install() { + default + + # remove .la file + find "${ED}" -name '*.la' -delete || die +} |