Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/parted: ChangeLog parted-2.1.ebuild
Date: Thu, 07 Jan 2010 15:56:58
Message-Id: E1NSuck-0000mD-G6@stork.gentoo.org
1 jer 10/01/07 15:50:10
2
3 Modified: ChangeLog
4 Added: parted-2.1.ebuild
5 Log:
6 Version bump thanks to Arfrever Frehtes Taifersar Arahesis (bug #288582).
7 (Portage version: 2.2_rc61/cvs/Linux i686)
8
9 Revision Changes Path
10 1.135 sys-apps/parted/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/parted/ChangeLog?rev=1.135&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/parted/ChangeLog?rev=1.135&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/parted/ChangeLog?r1=1.134&r2=1.135
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v
19 retrieving revision 1.134
20 retrieving revision 1.135
21 diff -u -r1.134 -r1.135
22 --- ChangeLog 27 Jul 2009 01:40:20 -0000 1.134
23 +++ ChangeLog 7 Jan 2010 15:50:10 -0000 1.135
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-apps/parted
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.134 2009/07/27 01:40:20 dirtyepic Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.135 2010/01/07 15:50:10 jer Exp $
30 +
31 +*parted-2.1 (07 Jan 2010)
32 +
33 + 07 Jan 2010; Jeroen Roovers <jer@g.o> +parted-2.1.ebuild:
34 + Version bump thanks to Arfrever Frehtes Taifersar Arahesis (bug #288582).
35
36 27 Jul 2009; Ryan Hill <dirtyepic@g.o> parted-1.9.0.ebuild:
37 Move econf to src_configure() where it belongs w/ EAPI=2 to prevent it
38
39
40
41 1.1 sys-apps/parted/parted-2.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/parted/parted-2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/parted/parted-2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: parted-2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-2.1.ebuild,v 1.1 2010/01/07 15:50:10 jer Exp $
51
52 EAPI="2"
53
54 inherit eutils
55
56 DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
57 HOMEPAGE="http://www.gnu.org/software/parted"
58 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
63 IUSE="nls readline +debug selinux device-mapper"
64
65 # specific version for gettext needed
66 # to fix bug 85999
67 DEPEND=">=sys-fs/e2fsprogs-1.27
68 >=sys-libs/ncurses-5.2
69 nls? ( >=sys-devel/gettext-0.12.1-r2 )
70 readline? ( >=sys-libs/readline-5.2 )
71 selinux? ( sys-libs/libselinux )
72 device-mapper? ( || (
73 >=sys-fs/lvm2-2.02.45
74 sys-fs/device-mapper )
75 )"
76
77 src_configure() {
78 econf \
79 $(use_with readline) \
80 $(use_enable nls) \
81 $(use_enable debug) \
82 $(use_enable selinux) \
83 $(use_enable device-mapper) \
84 --disable-rpath \
85 --disable-Werror || die "Configure failed"
86 }
87
88 src_install() {
89 emake install DESTDIR="${D}" || die "Install failed"
90 dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO
91 dodoc doc/{API,FAT,USER.jp}
92 }