diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2021-11-02 14:01:25 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2021-11-02 14:01:25 -0400 |
commit | 8cbd812f5514ae0b4a29ef5ab13b97bbdcd2a11b (patch) | |
tree | 0753e0d0c1a94c9494c42d9687df077f1961f83f /sci-libs | |
parent | sci-mathematics/giac: maintainer stabilize on amd64. (diff) | |
download | gentoo-8cbd812f5514ae0b4a29ef5ab13b97bbdcd2a11b.tar.gz gentoo-8cbd812f5514ae0b4a29ef5ab13b97bbdcd2a11b.tar.bz2 gentoo-8cbd812f5514ae0b4a29ef5ab13b97bbdcd2a11b.zip |
sci-libs/givaro: remove old "unused" givaro-4.1.1-r1.ebuild.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/givaro/givaro-4.1.1-r1.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/sci-libs/givaro/givaro-4.1.1-r1.ebuild b/sci-libs/givaro/givaro-4.1.1-r1.ebuild deleted file mode 100644 index 6a3e28a1f14e..000000000000 --- a/sci-libs/givaro/givaro-4.1.1-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="C++ library for arithmetic and algebraic computations" -HOMEPAGE="https://casys.gricad-pages.univ-grenoble-alpes.fr/givaro/" -SRC_URI="https://github.com/linbox-team/givaro/releases/download/v${PV}/${P}.tar.gz" - -LICENSE="CeCILL-B" -SLOT="0/9" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="cpu_flags_x86_fma3 cpu_flags_x86_fma4 cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_avx cpu_flags_x86_avx2 doc static-libs test" -RESTRICT="!test? ( test )" - -BDEPEND=" - doc? ( - app-doc/doxygen[dot] - dev-texlive/texlive-bibtexextra - dev-texlive/texlive-fontsextra - dev-texlive/texlive-fontutils - dev-texlive/texlive-latex - dev-texlive/texlive-latexextra - ) -" -DEPEND="dev-libs/gmp:0[cxx(+)]" -RDEPEND="${DEPEND}" - -DOCS=( AUTHORS ChangeLog README.md ) - -src_configure() { - # Passing "--disable-doc" also accidentally enables building - # the documentation, so we can't just $(use_enable doc) here. - # https://github.com/linbox-team/givaro/issues/148 - econf \ - $(usex doc --enable-doc "" "" "") \ - --with-docdir="/usr/share/doc/${PF}/html" \ - $(use_enable static-libs static) \ - $(use_enable cpu_flags_x86_fma3 fma) \ - $(use_enable cpu_flags_x86_fma4 fma4) \ - $(use_enable cpu_flags_x86_sse sse) \ - $(use_enable cpu_flags_x86_sse2 sse2) \ - $(use_enable cpu_flags_x86_sse3 sse3) \ - $(use_enable cpu_flags_x86_ssse3 ssse3) \ - $(use_enable cpu_flags_x86_sse4_1 sse41) \ - $(use_enable cpu_flags_x86_sse4_2 sse42) \ - $(use_enable cpu_flags_x86_avx avx) \ - $(use_enable cpu_flags_x86_avx2 avx2) -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die -} |