Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/grive/
Date: Sat, 03 Oct 2015 09:16:37
Message-Id: 1443863781.8e12f9f6b4bb969701561779a7b96cbe410fb854.pacho@gentoo
1 commit: 8e12f9f6b4bb969701561779a7b96cbe410fb854
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 09:16:02 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 09:16:21 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e12f9f6
7
8 net-misc/grive: RDEPEND on sys-libs/binutils-libs is needed (#528088)
9
10 Package-Manager: portage-2.2.22
11
12 net-misc/grive/grive-0.4.0_pre20150905-r1.ebuild | 36 ++++++++++++++++++++++++
13 1 file changed, 36 insertions(+)
14
15 diff --git a/net-misc/grive/grive-0.4.0_pre20150905-r1.ebuild b/net-misc/grive/grive-0.4.0_pre20150905-r1.ebuild
16 new file mode 100644
17 index 0000000..7929b2f
18 --- /dev/null
19 +++ b/net-misc/grive/grive-0.4.0_pre20150905-r1.ebuild
20 @@ -0,0 +1,36 @@
21 +# Copyright 1999-2014 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +inherit cmake-utils
28 +
29 +if [[ ${PV} = *9999 ]]; then
30 + inherit git-2
31 + EGIT_REPO_URI="git://github.com/vitalif/${PN}2.git"
32 +else
33 + inherit vcs-snapshot
34 + COMMIT="5dc7028c8aebb26d35ed31c4b07ac180cc1887c9"
35 + SRC_URI="https://github.com/vitalif/${PN}2/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
36 +fi
37 +
38 +DESCRIPTION="An open source Linux client for Google Drive"
39 +HOMEPAGE="https://github.com/vitalif/grive2"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE=""
45 +
46 +RDEPEND="
47 + dev-libs/boost:=
48 + dev-libs/expat
49 + >=dev-libs/json-c-0.11-r1:=
50 + dev-libs/libgcrypt:0=
51 + net-misc/curl
52 + sys-libs/binutils-libs:0=
53 + sys-libs/glibc
54 + dev-libs/yajl
55 +"
56 +DEPEND="${RDEPEND}"