Gentoo Archives: gentoo-commits

From: "Eray Aslan (eras)" <eras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/mu: ChangeLog mu-0.9.7.ebuild
Date: Mon, 21 Nov 2011 12:19:12
Message-Id: 20111121121855.4CE302004B@flycatcher.gentoo.org
1 eras 11/11/21 12:18:55
2
3 Modified: ChangeLog
4 Added: mu-0.9.7.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.10.36/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 net-mail/mu/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/mu/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 7 Jul 2011 17:04:47 -0000 1.7
24 +++ ChangeLog 21 Nov 2011 12:18:55 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-mail/mu
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mu/ChangeLog,v 1.7 2011/07/07 17:04:47 tomka Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mu/ChangeLog,v 1.8 2011/11/21 12:18:55 eras Exp $
30 +
31 +*mu-0.9.7 (21 Nov 2011)
32 +
33 + 21 Nov 2011; Eray Aslan <eras@g.o> +mu-0.9.7.ebuild:
34 + version bump
35
36 07 Jul 2011; Thomas Kahle <tomka@g.o> mu-0.9.6.ebuild:
37 x86 stable per bug 373623
38
39
40
41 1.1 net-mail/mu/mu-0.9.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/mu-0.9.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/mu-0.9.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mu-0.9.7.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-mail/mu/mu-0.9.7.ebuild,v 1.1 2011/11/21 12:18:55 eras Exp $
51
52 EAPI=3
53
54 inherit base
55
56 DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing"
57 HOMEPAGE="http://www.djcbsoftware.nl/code/mu/"
58 SRC_URI="http://mu0.googlecode.com/files/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="gui"
64
65 DEPEND=">=dev-libs/gmime-2.4:2.4
66 dev-libs/xapian
67 >=dev-libs/glib-2.22:2
68 gui? ( x11-libs/gtk+:2
69 net-libs/webkit-gtk:2 ) "
70 RDEPEND="${DEPEND}"
71
72 src_configure() {
73 local guiconf
74 if use gui; then
75 guiconf="--with-gui=gtk2"
76 else
77 guiconf="--with-gui=none"
78 fi
79
80 econf "${guiconf}"
81 }
82
83 src_install () {
84 base_src_install
85 # Installing the guis is not supported by upstream
86 if use gui; then
87 dobin toys/mug/mug || die
88 dobin toys/mug2/mug2 || die
89 fi
90 dodoc AUTHORS HACKING NEWS TODO README ChangeLog INSTALL
91 }