blob: 574106af813a243d226be8c6ea46ceeac7d021ee (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/balsa-2.3.20.ebuild,v 1.3 2007/09/21 08:21:19 opfer Exp $
inherit gnome2 eutils autotools
DESCRIPTION="Email client for GNOME"
HOMEPAGE="http://balsa.gnome.org"
SRC_URI="http://balsa.gnome.org/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ppc ~sparc x86"
# Doesn't currently build with -gnome
IUSE="crypt doc gtkhtml gtkspell kerberos ldap libnotify pcre sqlite ssl xface"
RDEPEND=">=dev-libs/glib-2.0
>=x11-libs/gtk+-2.10
>=dev-libs/gmime-2.1.9
>=net-libs/libesmtp-1.0.3
>=gnome-base/orbit-2
>=gnome-base/libbonobo-2.0
x11-themes/hicolor-icon-theme
sys-devel/libtool
sys-devel/gettext
net-mail/mailbase
crypt? ( >=app-crypt/gpgme-1.0 )
>=gnome-base/libgnome-2.0
>=gnome-base/libgnomeui-2.0
>=gnome-base/gnome-vfs-2.0
=x11-libs/gtksourceview-1*
gtkhtml? ( gnome-extra/gtkhtml )
sqlite? ( >=dev-db/sqlite-2.8 )
libnotify? ( x11-libs/libnotify )
gtkspell? ( =app-text/gtkspell-2* )
!gtkspell? ( virtual/aspell-dict )
kerberos? ( app-crypt/mit-krb5 )
ldap? ( net-nds/openldap )
pcre? ( >=dev-libs/libpcre-5.0 )
ssl? ( dev-libs/openssl )
xface? ( >=media-libs/compface-1.5.1 )"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig
>=app-text/scrollkeeper-0.1.4
doc? ( dev-util/gtk-doc )"
DOCS="AUTHORS COPYING ChangeLog HACKING INSTALL NEWS README TODO docs/*"
USE_DESTDIR="1"
pkg_setup() {
# threads are currently broken with gpgme
G2CONF="--disable-threads"
if use xface ; then
G2CONF="${G2CONF} --with-compface"
else
G2CONF="${G2CONF} --without-compface"
fi
if use crypt ; then
G2CONF="${G2CONF} --with-gpgme=gpgme-config"
else
G2CONF="${G2CONF} --without-gpgme"
fi
# if use gnome ; then
G2CONF="${G2CONF} --with-gtksourceview"
# else
# G2CONF="${G2CONF} --without-gtksourceview"
# fi
if use gtkhtml ; then
G2CONF="${G2CONF} --with-gtkhtml=2"
else
G2CONF="${G2CONF} --without-gtkhtml"
fi
G2CONF="${G2CONF} \
$(use_with gtkspell) \
$(use_with kerberos gss) \
$(use_with ldap) \
$(use_enable pcre) \
$(use_with sqlite) \
$(use_with ssl)"
}
src_unpack() {
gnome2_src_unpack
echo "libinit_balsa/assistant_helper.c" >> po/POTFILES.in
echo "libinit_balsa/assistant_init.c" >> po/POTFILES.in
echo "libinit_balsa/assistant_page_defclient.c" >> po/POTFILES.in
echo "libinit_balsa/assistant_page_directory.c" >> po/POTFILES.in
echo "libinit_balsa/assistant_page_finish.c" >> po/POTFILES.in
echo "libinit_balsa/assistant_page_user.c" >> po/POTFILES.in
echo "libinit_balsa/assistant_page_welcome.c" >> po/POTFILES.in
}
src_install() {
gnome2_src_install scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/
}
|