Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-libs/saclib/
Date: Sun, 01 May 2022 04:14:44
Message-Id: 1651378473.412b5118c567f0ecf50138e52dc6e460480d454e.Alessandro-Barbieri@gentoo
1 commit: 412b5118c567f0ecf50138e52dc6e460480d454e
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sun May 1 04:06:41 2022 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sun May 1 04:14:33 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=412b5118
7
8 sci-libs/saclib: add 2.2.8_p20220501
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 sci-libs/saclib/Manifest | 1 +
13 sci-libs/saclib/saclib-2.2.8_p20220501.ebuild | 42 +++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/sci-libs/saclib/Manifest b/sci-libs/saclib/Manifest
17 index 50550d1d4..089489a6a 100644
18 --- a/sci-libs/saclib/Manifest
19 +++ b/sci-libs/saclib/Manifest
20 @@ -1 +1,2 @@
21 +DIST saclib-2.2.8_p20220501.tar.gz 2494609 BLAKE2B b68bf17645294d6575e4b5412c69ae658a1b2694b4144d69bb516080ee5ae1d92fb6a1400f4fe7422d79c8ee0a96206709e7fca841aa319523e724eacd73d063 SHA512 d5e61150136f1519bcdf2dbe35160f5381e8e8da1a3049847737aa946ca71e1958277d7b8120a2c764cdb8aeb98faece16094695fabe45efbcd17c14ad1b6253
22 DIST saclib2.2.8.tgz 3060308 BLAKE2B 446546e02e3571bc523bd7602894f161d3c569ddd2126dd596125b7623a20bd44df2d04d062ec3891d2f4c4dadf1a63c9ab840316a47c68ff86ff9d841b9da35 SHA512 72589e07beed5abd2fce7a37c4e91122814d6b0fb373b19664c4892a4a68064bacbe886d76ec66c18aec76e54ae022b90a0dfd1b5ca68d617f4bfa8251ea8fb4
23
24 diff --git a/sci-libs/saclib/saclib-2.2.8_p20220501.ebuild b/sci-libs/saclib/saclib-2.2.8_p20220501.ebuild
25 new file mode 100644
26 index 000000000..1a4c79f56
27 --- /dev/null
28 +++ b/sci-libs/saclib/saclib-2.2.8_p20220501.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit cmake
36 +
37 +COMMIT="94ca9329bcb3ddbf99f34fe6417c3f76ea44248e"
38 +
39 +DESCRIPTION="Reference implementations of algorithms and forms the basis of QEPCAD"
40 +HOMEPAGE="
41 + https://www.usna.edu/Users/cs/wcbrown/qepcad/B/QEPCAD.html
42 + https://github.com/Alessandro-Barbieri/saclib
43 +"
44 +SRC_URI="https://github.com/Alessandro-Barbieri/${PN}/archive/${COMMIT}.tar.gz -> ${PF}.tar.gz"
45 +S="${WORKDIR}/${PN}-${COMMIT}"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64"
50 +
51 +BDEPEND="app-shells/tcsh"
52 +
53 +DOCS=( doc/saclib.pdf doc/saclocal.dvi README CHANGELOG )
54 +
55 +src_prepare() {
56 + # no main, it's a library
57 + rm src/main.c || die
58 + cmake_src_prepare
59 +}
60 +
61 +src_configure() {
62 + local mycmakeargs=(
63 + -DSACLIB_DOC=OFF
64 + )
65 + cmake_src_configure
66 +}
67 +
68 +src_install() {
69 + einstalldocs
70 + cmake_src_install
71 +}