Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/gnubiff: gnubiff-2.2.15-r2.ebuild ChangeLog
Date: Sun, 22 Jun 2014 16:08:30
Message-Id: 20140622160825.550D12004E@flycatcher.gentoo.org
1 pacho 14/06/22 16:08:25
2
3 Modified: ChangeLog
4 Added: gnubiff-2.2.15-r2.ebuild
5 Log:
6 Looks like, for some reason, panel wasn't finally disabled
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.47 net-mail/gnubiff/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/ChangeLog?rev=1.47&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/ChangeLog?rev=1.47&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/ChangeLog?r1=1.46&r2=1.47
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/gnubiff/ChangeLog,v
20 retrieving revision 1.46
21 retrieving revision 1.47
22 diff -u -r1.46 -r1.47
23 --- ChangeLog 17 Jun 2014 08:45:12 -0000 1.46
24 +++ ChangeLog 22 Jun 2014 16:08:25 -0000 1.47
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-mail/gnubiff
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/gnubiff/ChangeLog,v 1.46 2014/06/17 08:45:12 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-mail/gnubiff/ChangeLog,v 1.47 2014/06/22 16:08:25 pacho Exp $
30 +
31 +*gnubiff-2.2.15-r2 (22 Jun 2014)
32 +
33 + 22 Jun 2014; Pacho Ramos <pacho@g.o> +gnubiff-2.2.15-r2.ebuild:
34 + Looks like, for some reason, panel wasn't finally disabled
35
36 17 Jun 2014; Pacho Ramos <pacho@g.o> gnubiff-2.2.15-r1.ebuild:
37 amd64 stable, bug #510664
38
39
40
41 1.1 net-mail/gnubiff/gnubiff-2.2.15-r2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/gnubiff-2.2.15-r2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/gnubiff/gnubiff-2.2.15-r2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnubiff-2.2.15-r2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-mail/gnubiff/gnubiff-2.2.15-r2.ebuild,v 1.1 2014/06/22 16:08:25 pacho Exp $
51
52 EAPI=5
53 inherit autotools eutils
54
55 DESCRIPTION="A mail notification program"
56 HOMEPAGE="http://gnubiff.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="amd64 x86"
62 IUSE="debug fam nls password"
63
64 RDEPEND="
65 >=x11-libs/gtk+-3:3
66 >=gnome-base/libglade-2.3
67 dev-libs/popt
68 password? ( dev-libs/openssl )
69 fam? ( virtual/fam )
70 x11-proto/xproto
71 x11-libs/libX11
72 x11-libs/pango
73 x11-libs/gdk-pixbuf
74 "
75 DEPEND="${RDEPEND}
76 virtual/pkgconfig
77 "
78
79 DOCS="AUTHORS ChangeLog NEWS README THANKS TODO"
80
81 src_prepare() {
82 epatch \
83 "${FILESDIR}"/${P}-fix-nls.patch \
84 "${FILESDIR}"/${P}-gold.patch \
85 "${FILESDIR}"/${P}-underlink.patch
86 eautoreconf
87 }
88
89 src_configure() {
90 # note: --disable-gnome is to avoid deprecated gnome-panel-2.x
91 econf \
92 --disable-gnome \
93 $(use_enable debug) \
94 $(use_enable nls) \
95 $(use_enable fam) \
96 $(use_with password) \
97 $(use_with password password-string ${RANDOM}${RANDOM}${RANDOM}${RANDOM})
98 }