commit:     0ce883cd2deb8e009ae421d57d1da1f31bfa541d
Author:     François Bissey <frp.bissey <AT> gmail <DOT> com>
AuthorDate: Sat Jan 16 01:56:15 2021 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Jan 16 02:04:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ce883cd

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 <AT> gmail.com>
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 sci-libs/klu/files/klu-1.3.9-dash_doc.patch | 27 ++++++++++++++++++
 sci-libs/klu/klu-1.3.9-r1.ebuild            | 44 +++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

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 00000000000..1f7bc8edfe1
--- /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 00000000000..971207fad7c
--- /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
+}

Reply via email to