Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/voacapl/
Date: Thu, 30 Dec 2021 16:30:10
Message-Id: 1640881780.0e54d4107a1aa7bd97cb69f66fd08e1a3e77020c.tomjbe@gentoo
1 commit: 0e54d4107a1aa7bd97cb69f66fd08e1a3e77020c
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 30 16:29:20 2021 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 30 16:29:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e54d410
7
8 sci-electronics/voacapl: Drop reference to ${D} in src_compile
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
12
13 sci-electronics/voacapl/voacapl-0.7.6-r1.ebuild | 26 +++++++++++++++++++++++++
14 1 file changed, 26 insertions(+)
15
16 diff --git a/sci-electronics/voacapl/voacapl-0.7.6-r1.ebuild b/sci-electronics/voacapl/voacapl-0.7.6-r1.ebuild
17 new file mode 100644
18 index 000000000000..a4426523ebfb
19 --- /dev/null
20 +++ b/sci-electronics/voacapl/voacapl-0.7.6-r1.ebuild
21 @@ -0,0 +1,26 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI="7"
26 +
27 +inherit fortran-2
28 +
29 +MY_P=${PN}-v.${PV}
30 +
31 +DESCRIPTION="HF propagation prediction tool"
32 +HOMEPAGE="https://www.qsl.net/hz1jw/voacapl/index.html"
33 +SRC_URI="https://github.com/jawatson/${PN}/archive/v.${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="all-rights-reserved"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE=""
39 +
40 +RESTRICT="mirror bindist"
41 +
42 +S="${WORKDIR}/${MY_P}"
43 +
44 +src_compile() {
45 + # bug 513766
46 + emake -j1
47 +}