blob: ee5a0e60cd96e97fc9fe55786b6fc15b05167e0a (
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
|
# 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-1.4.3.ebuild,v 1.7 2005/03/26 04:23:12 allanonjl Exp $
inherit eutils
IUSE="ssl nls cups gtkhtml spell perl"
DESCRIPTION="Balsa: email client for GNOME"
SRC_URI="http://www.theochem.kth.se/~pawsa/${PN}/${P}.tar.bz2"
HOMEPAGE="http://www.balsa.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc sparc"
DEPEND="=dev-libs/glib-1.2*
=x11-libs/gtk+-1.2*
>=media-libs/imlib-1.9.10-r1
>=gnome-base/gnome-libs-1.4.1.4
=gnome-base/orbit-0*
>=media-libs/gdk-pixbuf-0.13.0
>=net-libs/libesmtp-0.8.11
nls? ( sys-devel/gettext )
ssl? ( dev-libs/openssl )
cups? ( >=gnome-base/gnome-print-0.30 )
perl? ( >=dev-libs/libpcre-3.4 )
spell? ( virtual/aspell-dict )
gtkhtml? ( >=gnome-extra/gtkhtml-0.16.1 )"
src_unpack() {
unpack ${A}
# Patch to use the new aspell instead of the old, crusty pspell modules
cd ${S}
epatch ${FILESDIR}/${PN}-1.4.0-gentoo.diff
}
src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
use ssl && myconf="${myconf} --with-ssl"
use gtkhtml && myconf="${myconf} --enable-gtkhtml"
use perl && myconf="${myconf} --enable-pcre"
use spell && myconf="${myconf} --with-aspell=yes"
myconf="${myconf} --with-mailpath=/var/mail --enable-threads"
autoconf || die
econf ${myconf} || die "configure balsa failed"
emake || die "emake failed"
}
src_install () {
local myinst
myinst="gnomeconfdir=${D}/etc \
gnomedatadir=${D}/usr/share"
einstall ${myinst} || die "make install failed"
dodoc AUTHORS COPYING ChangeLog HACKING INSTALL NEWS README TODO
docinto docs
dodoc docs/*
}
|