summaryrefslogtreecommitdiff
blob: f67bee2c5d7a092cb842a157f7e271b2b1c230c9 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/balsa-2.2.6.ebuild,v 1.2 2005/03/26 16:06:01 allanonjl Exp $

inherit gnome2 eutils

IUSE="doc ssl gtkhtml pcre ldap crypt kerberos threads sqlite"
DESCRIPTION="Email client for GNOME"
SRC_URI="http://balsa.gnome.org/${P}.tar.bz2"
HOMEPAGE="http://balsa.gnome.org"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~amd64"

RDEPEND="net-mail/mailbase
	>=gnome-base/libgnomeui-2
	>=gnome-base/libgnomeprintui-2.1.4
	>=net-libs/libesmtp-1.0-r1
	>=dev-libs/gmime-2.1.9
	sys-devel/libtool
	virtual/aspell-dict
	ssl? ( dev-libs/openssl )
	pcre? ( >=dev-libs/libpcre-3.4 )
	gtkhtml? ( =gnome-extra/libgtkhtml-2* )
	ldap? ( net-nds/openldap )
	kerberos? ( app-crypt/mit-krb5 )
	sqlite? ( >=dev-db/sqlite-2.8 )
	crypt? ( >=app-crypt/gpgme-0.9.0 )"

DEPEND="${RDEPEND}
	dev-util/intltool
	dev-util/pkgconfig
	app-text/scrollkeeper
	doc? ( dev-util/gtk-doc )
	"

USE_DESTDIR="1"

src_compile() {
	local myconf

	use crypt && myconf="${myconf} --with-gpgme=gpgme-config"

	econf \
		$(use_with ssl) \
		$(use_with ldap) \
		$(use_with sqlite) \
		$(use_with kerberos gss) \
		$(use_enable gtkhtml ) \
		$(use_enable threads ) \
		$(use_enable pcre ) \
		${myconf} || die "configure failed"

	emake || die "emake failed"
}

DOCS="AUTHORS COPYING ChangeLog HACKING INSTALL NEWS README TODO docs/*"