Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/gnubiff: ChangeLog gnubiff-2.2.13.ebuild gnubiff-2.2.11.ebuild
Date: Sun, 29 Aug 2010 21:33:52
Message-Id: 20100829213346.69B4B20051@flycatcher.gentoo.org
1 radhermit 10/08/29 21:33:46
2
3 Modified: ChangeLog
4 Added: gnubiff-2.2.13.ebuild
5 Removed: gnubiff-2.2.11.ebuild
6 Log:
7 Version bump for bug #301196, thanks to Geert Vanhaute for reporting. Remove buggy version, closes bugs #272095 and #333809.
8
9 (Portage version: 2.2_rc71/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.25 net-mail/gnubiff/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/ChangeLog?rev=1.25&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/ChangeLog?rev=1.25&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/ChangeLog?r1=1.24&r2=1.25
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-mail/gnubiff/ChangeLog,v
21 retrieving revision 1.24
22 retrieving revision 1.25
23 diff -u -r1.24 -r1.25
24 --- ChangeLog 22 May 2009 20:18:30 -0000 1.24
25 +++ ChangeLog 29 Aug 2010 21:33:46 -0000 1.25
26 @@ -1,6 +1,13 @@
27 # ChangeLog for net-mail/gnubiff
28 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-mail/gnubiff/ChangeLog,v 1.24 2009/05/22 20:18:30 dertobi123 Exp $
30 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/net-mail/gnubiff/ChangeLog,v 1.25 2010/08/29 21:33:46 radhermit Exp $
32 +
33 +*gnubiff-2.2.13 (29 Aug 2010)
34 +
35 + 29 Aug 2010; Tim Harder <radhermit@g.o> -gnubiff-2.2.11.ebuild,
36 + +gnubiff-2.2.13.ebuild:
37 + Version bump for bug #301196, thanks to Geert Vanhaute for reporting.
38 + Remove buggy version, closes bugs #272095 and #333809.
39
40 *gnubiff-2.2.11 (22 May 2009)
41
42
43
44
45 1.1 net-mail/gnubiff/gnubiff-2.2.13.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/gnubiff-2.2.13.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/gnubiff-2.2.13.ebuild?rev=1.1&content-type=text/plain
49
50 Index: gnubiff-2.2.13.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-mail/gnubiff/gnubiff-2.2.13.ebuild,v 1.1 2010/08/29 21:33:46 radhermit Exp $
55
56 EAPI=3
57
58 DESCRIPTION="A mail notification program"
59 HOMEPAGE="http://gnubiff.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~ia64 ~x86"
65 IUSE="debug fam gnome nls password"
66
67 RDEPEND=">=x11-libs/gtk+-2.6
68 >=gnome-base/libglade-2.3
69 dev-libs/popt
70 gnome? (
71 >=gnome-base/libgnome-2.2
72 >=gnome-base/libgnomeui-2.2 )
73 password? ( dev-libs/openssl )
74 fam? ( virtual/fam )
75 x11-proto/xproto"
76 DEPEND="${RDEPEND}
77 dev-util/pkgconfig"
78
79 src_configure() {
80 econf \
81 $(use_enable debug) \
82 $(use_enable gnome) \
83 $(use_enable nls) \
84 $(use_enable fam) \
85 $(use_with password) \
86 $(use_with password password-string ${RANDOM}${RANDOM}${RANDOM}${RANDOM})
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die "emake install failed"
91 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
92 }