Gentoo Archives: gentoo-commits

From: "Thomas Kahle (tomka)" <tomka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/mu: mu-0.9.8.5.ebuild ChangeLog
Date: Sun, 29 Jul 2012 13:39:39
Message-Id: 20120729133925.9B8B32004C@flycatcher.gentoo.org
1 tomka 12/07/29 13:39:25
2
3 Modified: ChangeLog
4 Added: mu-0.9.8.5.ebuild
5 Log:
6 bump to 0.9.8.5
7
8 (Portage version: 2.1.11.9/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.9 net-mail/mu/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/mu/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 21 Nov 2011 12:18:55 -0000 1.8
24 +++ ChangeLog 29 Jul 2012 13:39:25 -0000 1.9
25 @@ -1,6 +1,12 @@
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.8 2011/11/21 12:18:55 eras Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mu/ChangeLog,v 1.9 2012/07/29 13:39:25 tomka Exp $
31 +
32 +*mu-0.9.8.5 (29 Jul 2012)
33 +
34 + 29 Jul 2012; Thomas Kahle <tomka@g.o> +files/70mu-gentoo.el,
35 + +mu-0.9.8.5.ebuild:
36 + bump to 0.9.8.5
37
38 *mu-0.9.7 (21 Nov 2011)
39
40 @@ -49,4 +55,3 @@
41 +metadata.xml:
42 New ebuild for bug 305073, thanks to Tommy[D], hwoarang, Xarthisius and
43 sedzimir
44 -
45
46
47
48 1.1 net-mail/mu/mu-0.9.8.5.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/mu-0.9.8.5.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/mu-0.9.8.5.ebuild?rev=1.1&content-type=text/plain
52
53 Index: mu-0.9.8.5.ebuild
54 ===================================================================
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/net-mail/mu/mu-0.9.8.5.ebuild,v 1.1 2012/07/29 13:39:25 tomka Exp $
58
59 EAPI=4
60
61 inherit base elisp-common
62
63 DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing"
64 HOMEPAGE="http://www.djcbsoftware.nl/code/mu/"
65 SRC_URI="http://mu0.googlecode.com/files/${P}.tar.gz"
66
67 LICENSE="GPL-3"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="emacs gui"
71
72 # Without webkit-gtk there is no pdf-preview functionality, everthing
73 # else works as of 0.9.8.5
74 DEPEND="
75 >=dev-libs/gmime-2.4:2.4
76 dev-libs/xapian
77 dev-libs/glib:2
78 gui? (
79 x11-libs/gtk+:3
80 net-libs/webkit-gtk:3 )
81 emacs? ( >=virtual/emacs-23 )"
82 RDEPEND="${DEPEND}"
83
84 SITEFILE="70mu-gentoo.el"
85
86 src_configure() {
87 local guiconf
88 if use gui; then
89 guiconf="--with-gui=gtk3"
90 else
91 guiconf="--with-gui=none"
92 fi
93
94 # Make a guile USE-flag as soon as >=guile-2 is avaiable
95 econf --disable-guile \
96 $(use_enable gui webkit) \
97 ${guiconf}
98 }
99
100 src_install () {
101 base_src_install
102 # Installing the guis is not supported by upstream
103 if use gui; then
104 dobin toys/mug/mug || die
105 fi
106 dodoc AUTHORS HACKING NEWS TODO README ChangeLog INSTALL
107 if use emacs; then
108 elisp-install ${PN} emacs/*.el emacs/*.elc
109 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
110 fi
111
112 }
113
114 pkg_postinst() {
115 if use emacs; then
116 einfo "To use mu4e you need to configure it in your .emacs file"
117 einfo "See the manual for more information:"
118 einfo "http://www.djcbsoftware.nl/code/mu/mu4e/Getting-started.html"
119 fi
120
121 elog "If you upgrade from an older major version,"
122 elog "then you need to rebuild your mail index."
123
124 use emacs && elisp-site-regen
125 }
126
127 pkg_postrm() {
128 use emacs && elisp-site-regen
129 }