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/diffutils: ChangeLog diffutils-3.0.ebuild
Date: Wed, 05 May 2010 17:17:19
Message-Id: 20100505171714.C7E7A2C3FB@corvid.gentoo.org
1 jer 10/05/05 17:17:14
2
3 Modified: ChangeLog
4 Added: diffutils-3.0.ebuild
5 Log:
6 Version bump by Samuli Suominen (bug #318421).
7 (Portage version: 2.2_rc67/cvs/Linux i686)
8
9 Revision Changes Path
10 1.57 sys-apps/diffutils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.57&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.57&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.56&r2=1.57
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
19 retrieving revision 1.56
20 retrieving revision 1.57
21 diff -u -r1.56 -r1.57
22 --- ChangeLog 31 Mar 2010 11:42:40 -0000 1.56
23 +++ ChangeLog 5 May 2010 17:17:14 -0000 1.57
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-apps/diffutils
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.56 2010/03/31 11:42:40 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.57 2010/05/05 17:17:14 jer Exp $
29 +
30 +*diffutils-3.0 (05 May 2010)
31 +
32 + 05 May 2010; Jeroen Roovers <jer@g.o> +diffutils-3.0.ebuild:
33 + Version bump by Samuli Suominen (bug #318421).
34
35 *diffutils-2.9-r1 (31 Mar 2010)
36
37
38
39
40 1.1 sys-apps/diffutils/diffutils-3.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/diffutils/diffutils-3.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/diffutils/diffutils-3.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: diffutils-3.0.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.0.ebuild,v 1.1 2010/05/05 17:17:14 jer Exp $
50
51 inherit flag-o-matic
52
53 DESCRIPTION="Tools to make diffs and compare files"
54 HOMEPAGE="http://www.gnu.org/software/diffutils/"
55 SRC_URI="ftp://alpha.gnu.org/gnu/diffutils/${P}.tar.gz
56 mirror://gnu/diffutils/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
61 IUSE="nls static"
62
63 RDEPEND=""
64 DEPEND="nls? ( sys-devel/gettext )"
65
66 src_compile() {
67 use static && append-ldflags -static
68
69 # Disable automagic dependency over libsigsegv; see bug #312351.
70 export ac_cv_libsigsegv=no
71
72 econf \
73 --with-packager="Gentoo" \
74 --with-packager-version="${PVR}" \
75 --with-packager-bug-reports="http://bugs.gentoo.org/" \
76 $(use_enable nls) \
77 || die
78 emake || die
79 }
80
81 src_test() {
82 # explicitly allow parallel testing
83 emake check || die
84 }
85
86 src_install() {
87 emake install DESTDIR="${D}" || die
88 dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die
89 }