Gentoo Archives: gentoo-commits

From: "Naohiro Aota (naota)" <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/nilfs-utils: nilfs-utils-2.1.3.ebuild ChangeLog
Date: Fri, 29 Jun 2012 10:30:59
Message-Id: 20120629103048.9A3262004B@flycatcher.gentoo.org
1 naota 12/06/29 10:30:48
2
3 Modified: ChangeLog
4 Added: nilfs-utils-2.1.3.ebuild
5 Log:
6 Version bump. #423901
7
8 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.19 sys-fs/nilfs-utils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/nilfs-utils/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/nilfs-utils/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/nilfs-utils/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-fs/nilfs-utils/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 16 May 2012 15:35:13 -0000 1.18
24 +++ ChangeLog 29 Jun 2012 10:30:48 -0000 1.19
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-fs/nilfs-utils
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/nilfs-utils/ChangeLog,v 1.18 2012/05/16 15:35:13 naota Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/nilfs-utils/ChangeLog,v 1.19 2012/06/29 10:30:48 naota Exp $
30 +
31 +*nilfs-utils-2.1.3 (29 Jun 2012)
32 +
33 + 29 Jun 2012; Naohiro Aota <naota@g.o> +nilfs-utils-2.1.3.ebuild:
34 + Version bump. #423901
35
36 *nilfs-utils-2.1.1 (16 May 2012)
37
38
39
40
41 1.1 sys-fs/nilfs-utils/nilfs-utils-2.1.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/nilfs-utils/nilfs-utils-2.1.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/nilfs-utils/nilfs-utils-2.1.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: nilfs-utils-2.1.3.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-fs/nilfs-utils/nilfs-utils-2.1.3.ebuild,v 1.1 2012/06/29 10:30:48 naota Exp $
51
52 EAPI=3
53
54 inherit multilib linux-info
55
56 DESCRIPTION="A New Implementation of a Log-structured File System for Linux"
57 HOMEPAGE="http://www.nilfs.org/"
58 SRC_URI="http://www.nilfs.org/download/${P}.tar.bz2"
59
60 LICENSE="GPL-2 LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
63 IUSE="static-libs"
64
65 RDEPEND="sys-libs/e2fsprogs-libs"
66 DEPEND="${DEPEND}
67 sys-kernel/linux-headers"
68
69 CONFIG_CHECK="~POSIX_MQUEUE"
70
71 src_configure() {
72 econf $(use_enable static-libs static) \
73 --libdir=/$(get_libdir)
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" install || die
78
79 dodoc AUTHORS ChangeLog NEWS README || die
80
81 rm -f "${ED}"/$(get_libdir)/*.la || die
82 }