Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-block/nbd: ChangeLog nbd-2.9.22.ebuild
Date: Sun, 29 May 2011 16:43:12
Message-Id: 20110529164302.C303C20054@flycatcher.gentoo.org
1 vapier 11/05/29 16:43:02
2
3 Modified: ChangeLog
4 Added: nbd-2.9.22.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.57 sys-block/nbd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/nbd/ChangeLog?rev=1.57&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/nbd/ChangeLog?rev=1.57&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/nbd/ChangeLog?r1=1.56&r2=1.57
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-block/nbd/ChangeLog,v
20 retrieving revision 1.56
21 retrieving revision 1.57
22 diff -u -r1.56 -r1.57
23 --- ChangeLog 16 May 2011 03:16:53 -0000 1.56
24 +++ ChangeLog 29 May 2011 16:43:02 -0000 1.57
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-block/nbd
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-block/nbd/ChangeLog,v 1.56 2011/05/16 03:16:53 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-block/nbd/ChangeLog,v 1.57 2011/05/29 16:43:02 vapier Exp $
30 +
31 +*nbd-2.9.22 (29 May 2011)
32 +
33 + 29 May 2011; Mike Frysinger <vapier@g.o> +nbd-2.9.22.ebuild:
34 + Version bump.
35
36 *nbd-2.9.21a (16 May 2011)
37
38
39
40
41 1.1 sys-block/nbd/nbd-2.9.22.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/nbd/nbd-2.9.22.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/nbd/nbd-2.9.22.ebuild?rev=1.1&content-type=text/plain
45
46 Index: nbd-2.9.22.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-block/nbd/nbd-2.9.22.ebuild,v 1.1 2011/05/29 16:43:02 vapier Exp $
51
52 EAPI="2"
53
54 DESCRIPTION="Userland client/server for kernel network block device"
55 HOMEPAGE="http://nbd.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/nbd/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
61 IUSE=""
62
63 RDEPEND=">=dev-libs/glib-2.0"
64 DEPEND="${RDEPEND}
65 dev-util/pkgconfig"
66
67 src_configure() {
68 econf \
69 --enable-lfs \
70 --enable-syslog
71 }
72
73 src_compile() {
74 emake || die
75 emake -C gznbd || die
76 }
77
78 src_install() {
79 emake install DESTDIR="${D}" || die
80 dobin gznbd/gznbd || die
81 dodoc README
82 }