blob: 4eaa7f053f3f80b80388c7e196c87bb2b227869e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/mail-notification-1.1.ebuild,v 1.5 2005/07/09 18:01:19 swegener Exp $
inherit gnome2
DESCRIPTION="A GNOME trayicon which checks for mail supporting mbox, MH,
Maildir, IMAP, POP3, Gmail. Authenticates via apop, ssl, sasl."
HOMEPAGE="http://www.nongnu.org/mailnotify/"
SRC_URI="http://savannah.nongnu.org/download/mailnotify/${P}.tar.gz"
KEYWORDS="~x86 ~amd64 ~ppc ~sparc"
SLOT="0"
LICENSE="GPL-2"
IUSE="imap ipv6 mime ssl sasl" # gmail gmailtimestamps
DEPEND=">=x11-libs/gtk+-2.4
>=dev-util/gob-2
>=gnome-base/gnome-panel-2
>=gnome-base/eel-2
>=gnome-base/gconf-2.4
>=gnome-base/libgnomeui-2.4
>=gnome-base/libglade-2.0
>=gnome-base/eel-2.0
>=gnome-base/orbit-2.0
dev-perl/XML-Parser
ssl? ( >=dev-libs/openssl-0.9.6 )
sasl? ( >=dev-libs/cyrus-sasl-2 )
mime? ( >=dev-libs/gmime-2.1 )"
# gmail? ( >=net-libs/libsoup-2.2
# gmailtimestamps? ( >=dev-libs/icu-2.6 ) )
G2CONF="${G2CONF} $(use_enable ssl)"
G2CONF="${G2CONF} $(use_enable sasl)"
G2CONF="${G2CONF} $(use_enable ipv6)"
G2CONF="${G2CONF} $(use_enable imap)"
G2CONF="${G2CONF} $(use_enable mime)"
G2CONF="${G2CONF} --disable-gmail"
# Gmail good to go now. --slarti
# Update: or it would be, if it worked
# G2CONF="${G2CONF} $(use_enable gmail)"
pkg_postinst() {
ewarn
ewarn "Due to a bug in bonobo-activation, your GNOME/X11 session must"
ewarn "be restarted for mail-notification to work. If you don't do"
ewarn "this, this program will crash during the setup phase."
ewarn "See http://bugzilla.gnome.org/show_bug.cgi?id=151082"
ewarn
ewarn "Support for gmail does not seem to be functioning. Check back for"
ewarn "gmail support in future releases."
ewarn
}
|