Gentoo Archives: gentoo-commits

From: Doug Goldstein <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-protocol/
Date: Wed, 02 Mar 2016 02:59:00
Message-Id: 1456887518.c0e3b8654d1321d0c52c60eb56968cbede3427e2.cardoe@gentoo
1 commit: c0e3b8654d1321d0c52c60eb56968cbede3427e2
2 Author: Doug Goldstein <cardoe <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 2 02:49:21 2016 +0000
4 Commit: Doug Goldstein <cardoe <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 2 02:58:38 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0e3b865
7
8 app-emulation/spice-protocol: live ebuilds
9
10 Based on the work of Michal Privoznik <miso.privoznik <AT> gmail.com> to provide
11 live ebuilds.
12
13 Gentoo-Bug: 575652
14
15 Package-Manager: portage-2.2.26
16 Signed-off-by: Doug Goldstein <cardoe <AT> gentoo.org>
17
18 .../spice-protocol/spice-protocol-9999.ebuild | 30 ++++++++++++++++++++++
19 1 file changed, 30 insertions(+)
20
21 diff --git a/app-emulation/spice-protocol/spice-protocol-9999.ebuild b/app-emulation/spice-protocol/spice-protocol-9999.ebuild
22 new file mode 100644
23 index 0000000..2d21d4c
24 --- /dev/null
25 +++ b/app-emulation/spice-protocol/spice-protocol-9999.ebuild
26 @@ -0,0 +1,30 @@
27 +# Copyright 1999-2016 Gentoo Foundation
28 +# Distributed under the terms of the GNU General Public License v2
29 +# $Id$
30 +
31 +EAPI=5
32 +
33 +if [[ ${PV} = *9999* ]]; then
34 + inherit git-2 autotools
35 + EGIT_REPO_URI="git://anongit.freedesktop.org/spice/spice-protocol"
36 + SRC_URI=""
37 + KEYWORDS=""
38 +else
39 + SRC_URI="http://spice-space.org/download/releases/${P}.tar.bz2"
40 + KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
41 +fi
42 +
43 +DESCRIPTION="Headers defining the SPICE protocol"
44 +HOMEPAGE="http://spice-space.org/"
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +IUSE=""
49 +
50 +DEPEND=""
51 +RDEPEND="${DEPEND}"
52 +
53 +src_prepare() {
54 + [[ ${PV} = *9999* ]] && eautoreconf
55 + default
56 +}