Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: sys-block/xnbd/
Date: Fri, 24 Jun 2016 09:57:20
Message-Id: 1466762215.fe9d561dc1d308a76fa836cb4c5e845c92a0723d.sping@gentoo
1 commit: fe9d561dc1d308a76fa836cb4c5e845c92a0723d
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 24 09:56:11 2016 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 24 09:56:55 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=fe9d561d
7
8 sys-block/xnbd: 0.4.0
9
10 sys-block/xnbd/xnbd-0.4.0.ebuild | 27 +++++++++++++++++++++++++++
11 1 file changed, 27 insertions(+)
12
13 diff --git a/sys-block/xnbd/xnbd-0.4.0.ebuild b/sys-block/xnbd/xnbd-0.4.0.ebuild
14 new file mode 100644
15 index 0000000..e07745c
16 --- /dev/null
17 +++ b/sys-block/xnbd/xnbd-0.4.0.ebuild
18 @@ -0,0 +1,27 @@
19 +# Copyright 1999-2016 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI="5"
24 +
25 +inherit autotools
26 +
27 +DESCRIPTION="NBD server program enabling live block device migration over wide-area networks"
28 +HOMEPAGE="https://bitbucket.org/hirofuchi/xnbd/wiki/Home"
29 +SRC_URI="https://bitbucket.org/hirofuchi/xnbd/downloads/${P}.tgz"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~x86"
34 +IUSE=""
35 +
36 +RDEPEND=">=dev-libs/glib-2.32:2
37 + dev-libs/jansson"
38 +DEPEND="${RDEPEND}
39 + app-text/asciidoc"
40 +
41 +S=${WORKDIR}/${P}/trunk
42 +
43 +src_prepare() {
44 + eautoreconf
45 +}