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: gnubiff-2.2.13-r1.ebuild ChangeLog gnubiff-2.2.13.ebuild
Date: Sat, 02 Oct 2010 00:32:25
Message-Id: 20101002003216.5BF5120054@flycatcher.gentoo.org
1 radhermit 10/10/02 00:32:15
2
3 Modified: ChangeLog
4 Added: gnubiff-2.2.13-r1.ebuild
5 Removed: gnubiff-2.2.13.ebuild
6 Log:
7 Revision bump and remove old. Fix compile errors when the nls USE flag is not enabled (fixes bug #339398) and add gnome-base/gnome-panel dependency for GNOME support.
8
9 (Portage version: 2.2_rc87/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.26 net-mail/gnubiff/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/ChangeLog?rev=1.26&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/ChangeLog?rev=1.26&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/ChangeLog?r1=1.25&r2=1.26
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-mail/gnubiff/ChangeLog,v
21 retrieving revision 1.25
22 retrieving revision 1.26
23 diff -u -r1.25 -r1.26
24 --- ChangeLog 29 Aug 2010 21:33:46 -0000 1.25
25 +++ ChangeLog 2 Oct 2010 00:32:15 -0000 1.26
26 @@ -1,6 +1,14 @@
27 # ChangeLog for net-mail/gnubiff
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-mail/gnubiff/ChangeLog,v 1.25 2010/08/29 21:33:46 radhermit Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-mail/gnubiff/ChangeLog,v 1.26 2010/10/02 00:32:15 radhermit Exp $
31 +
32 +*gnubiff-2.2.13-r1 (02 Oct 2010)
33 +
34 + 02 Oct 2010; Tim Harder <radhermit@g.o> -gnubiff-2.2.13.ebuild,
35 + +gnubiff-2.2.13-r1.ebuild, +files/gnubiff-2.2.13-fix-nls.patch:
36 + Revision bump and remove old. Fix compile errors when the nls USE flag is
37 + not enabled (fixes bug #339398) and add gnome-base/gnome-panel dependency
38 + for GNOME support.
39
40 *gnubiff-2.2.13 (29 Aug 2010)
41
42
43
44
45 1.1 net-mail/gnubiff/gnubiff-2.2.13-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/gnubiff-2.2.13-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/gnubiff-2.2.13-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: gnubiff-2.2.13-r1.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-r1.ebuild,v 1.1 2010/10/02 00:32:15 radhermit Exp $
55
56 EAPI=3
57
58 inherit eutils
59
60 DESCRIPTION="A mail notification program"
61 HOMEPAGE="http://gnubiff.sourceforge.net/"
62 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
63
64 LICENSE="GPL-3"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~ia64 ~x86"
67 IUSE="debug fam gnome nls password"
68
69 RDEPEND=">=x11-libs/gtk+-2.6
70 >=gnome-base/libglade-2.3
71 dev-libs/popt
72 gnome? (
73 gnome-base/gnome-panel
74 >=gnome-base/libgnome-2.2
75 >=gnome-base/libgnomeui-2.2 )
76 password? ( dev-libs/openssl )
77 fam? ( virtual/fam )
78 x11-proto/xproto"
79 DEPEND="${RDEPEND}
80 dev-util/pkgconfig"
81
82 src_prepare() {
83 epatch "${FILESDIR}"/${P}-fix-nls.patch
84 }
85
86 src_configure() {
87 econf \
88 $(use_enable debug) \
89 $(use_enable gnome) \
90 $(use_enable nls) \
91 $(use_enable fam) \
92 $(use_with password) \
93 $(use_with password password-string ${RANDOM}${RANDOM}${RANDOM}${RANDOM})
94 }
95
96 src_install() {
97 emake DESTDIR="${D}" install || die "emake install failed"
98 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
99 }