Gentoo Archives: gentoo-commits

From: Tony Vroon <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/sunxi-tools/
Date: Wed, 13 Jul 2016 09:40:36
Message-Id: 1468402770.c57cf9b2e91728d44ebc689a78e5e3afc7eb9224.chainsaw@gentoo
1 commit: c57cf9b2e91728d44ebc689a78e5e3afc7eb9224
2 Author: Tony Vroon <chainsaw <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 13 09:39:30 2016 +0000
4 Commit: Tony Vroon <chainsaw <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 13 09:39:30 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c57cf9b2
7
8 dev-embedded/sunxi-tools: Version bump to 1.3; all ebuild work by Alexander Nigl in bug #588264.
9
10 dev-embedded/sunxi-tools/sunxi-tools-1.3.ebuild | 33 +++++++++++++++++++++++++
11 1 file changed, 33 insertions(+)
12
13 diff --git a/dev-embedded/sunxi-tools/sunxi-tools-1.3.ebuild b/dev-embedded/sunxi-tools/sunxi-tools-1.3.ebuild
14 new file mode 100644
15 index 0000000..6d6d13c
16 --- /dev/null
17 +++ b/dev-embedded/sunxi-tools/sunxi-tools-1.3.ebuild
18 @@ -0,0 +1,33 @@
19 +# Copyright 1999-2016 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI="6"
24 +
25 +inherit eutils toolchain-funcs
26 +
27 +MY_PV="v${PV}"
28 +SRC_URI="https://github.com/linux-sunxi/sunxi-tools/archive/${MY_PV}.tar.gz"
29 +
30 +DESCRIPTION="Tools for Allwinner A10 devices."
31 +HOMEPAGE="http://linux-sunxi.org/"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +IUSE=""
36 +KEYWORDS="~amd64"
37 +
38 +DEPEND="virtual/libusb"
39 +
40 +src_compile() {
41 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -std=c99 -D_POSIX_C_SOURCE=200112L -Iinclude/" all misc
42 +}
43 +
44 +src_install() {
45 + dobin bin2fex fex2bin phoenix_info
46 + newbin sunxi-bootinfo bootinfo
47 + newbin sunxi-fel fel
48 + newbin sunxi-fexc fexc
49 + newbin sunxi-nand-part nand-part
50 + newbin sunxi-pio pio
51 +}