Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/cksfv/
Date: Sun, 14 Apr 2019 18:18:06
Message-Id: 1555265787.95905908d02a1c31ccc52a969695bc6e65823536.monsieurp@gentoo
1 commit: 95905908d02a1c31ccc52a969695bc6e65823536
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Apr 14 14:09:32 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 14 18:16:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95905908
7
8 app-arch/cksfv: EAPI7 bump, fix LICENCE.
9
10 Closes: https://bugs.gentoo.org/683298
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 app-arch/cksfv/cksfv-1.3.14-r1.ebuild | 24 ++++++++++++++++++++++++
15 1 file changed, 24 insertions(+)
16
17 diff --git a/app-arch/cksfv/cksfv-1.3.14-r1.ebuild b/app-arch/cksfv/cksfv-1.3.14-r1.ebuild
18 new file mode 100644
19 index 00000000000..4793e5b0274
20 --- /dev/null
21 +++ b/app-arch/cksfv/cksfv-1.3.14-r1.ebuild
22 @@ -0,0 +1,24 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +inherit toolchain-funcs
29 +
30 +DESCRIPTION="SFV checksum utility (simple file verification)"
31 +HOMEPAGE="http://zakalwe.fi/~shd/foss/cksfv/"
32 +SRC_URI="http://zakalwe.fi/~shd/foss/cksfv/files/${P}.tar.bz2"
33 +
34 +LICENSE="GPL-2+"
35 +SLOT="0"
36 +KEYWORDS="~alpha ~amd64 ~amd64-linux ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-linux"
37 +
38 +src_configure() {
39 + # note: not an autoconf configure script
40 + ./configure \
41 + --compiler="$(tc-getCC)" \
42 + --prefix="${EPREFIX}"/usr \
43 + --package-prefix="${D}" \
44 + --bindir="${EPREFIX}"/usr/bin \
45 + --mandir="${EPREFIX}"/usr/share/man || die
46 +}