Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/bsdsfv/
Date: Sat, 08 Apr 2017 21:01:16
Message-Id: 1491685265.b9e23fef4a950169e3b800fd50e4bd698af7b910.dilfridge@gentoo
1 commit: b9e23fef4a950169e3b800fd50e4bd698af7b910
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 8 21:00:46 2017 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 8 21:01:05 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9e23fef
7
8 app-arch/bsdsfv: EAPI bump, see bug 605728
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild | 28 ++++++++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild b/app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild
16 new file mode 100644
17 index 00000000000..58010f9828f
18 --- /dev/null
19 +++ b/app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit toolchain-funcs
27 +
28 +DESCRIPTION="all-in-one SFV checksum utility"
29 +HOMEPAGE="http://bsdsfv.sourceforge.net/"
30 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
31 +
32 +LICENSE="BSD"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~arm ~hppa ~m68k ~ppc ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
35 +IUSE=""
36 +
37 +S=${WORKDIR}/${PN}
38 +
39 +PATCHES=( "${FILESDIR}"/${P}-64bit.patch )
40 +
41 +src_compile() {
42 + emake STRIP=true CC=$(tc-getCC)
43 +}
44 +
45 +src_install() {
46 + dobin bsdsfv
47 + dodoc README MANUAL
48 +}