blob: 16999d84782a9b09a9e6edacecf79bbc0e8f8195 (
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/evolution/evolution-2.0.4.ebuild,v 1.5 2005/05/08 14:08:41 herbs Exp $
inherit eutils gnome2 flag-o-matic alternatives
DESCRIPTION="A GNOME groupware application, a Microsoft Outlook workalike"
HOMEPAGE="http://ximian.com/products/evolution/"
LICENSE="GPL-2"
SLOT="2.0"
KEYWORDS="x86 amd64 ppc ~sparc ~hppa ia64 ~mips ~alpha"
IUSE="ssl mozilla ldap doc spell ipv6 kerberos crypt nntp debug pda"
# Top stanza are ximian deps
RDEPEND=">=gnome-extra/libgtkhtml-3.2.5
>=gnome-extra/gal-2.2.5
>=gnome-extra/evolution-data-server-1.0.4
>=net-libs/libsoup-2.2.1
>=dev-libs/glib-2
>=dev-libs/libxml2-2
>=gnome-base/gconf-2
>=gnome-extra/yelp-2.5.1
>=gnome-base/libglade-2
>=gnome-base/gnome-vfs-2
>=gnome-base/libbonoboui-2.4.2
>=gnome-base/libgnomecanvas-2
>=gnome-base/libgnome-2
>=gnome-base/libgnomeui-2
>=gnome-base/libgnomeprint-2
>=gnome-base/libgnomeprintui-2
>=x11-themes/gnome-icon-theme-1.2
>=gnome-base/orbit-2.9.8
mail-filter/spamassassin
pda? ( >=app-pda/gnome-pilot-2.0.10
>=app-pda/gnome-pilot-conduits-2.0.10 )
spell? ( >=app-text/gnome-spell-1.0.5 )
crypt? ( >=app-crypt/gnupg-1.2.2 )
ssl? ( mozilla? ( www-client/mozilla )
!mozilla? ( >=dev-libs/nspr-4.4.1
>=dev-libs/nss-3.9.2 ) )
ldap? ( >=net-nds/openldap-2 )
kerberos? ( virtual/krb5 )"
DEPEND="${RDEPEND}
>=sys-apps/sed-4
dev-util/pkgconfig
>=sys-devel/libtool-1.4.1-r1
>=dev-util/intltool-0.30
sys-devel/gettext
sys-devel/bison
>=app-text/scrollkeeper-0.3.10-r1
doc? ( dev-util/gtk-doc )"
G2CONF="--disable-default-binary \
$(use_enable ssl nss) \
$(use_enable ssl smime) \
$(use_enable ipv6) \
$(use_enable nntp) \
$(use_enable pda pilot-conduits)"
USE_DESTDIR="1"
DOCS="AUTHORS COPYING* ChangeLog HACKING MAINTAINERS NEWS README"
ELTCONF="--reverse-deps"
src_unpack() {
unpack ${A}
cd ${S}
# bug #66166 -- temporary workaround until new baselayout exists
epatch ${FILESDIR}/${PN}-2.0.3-gentoo_etc_services.patch
}
src_compile() {
# problems with -O3 on gcc-3.3.1
replace-flags -O3 -O2
if [ "${ARCH}" = "hppa" ]; then
append-flags "-fPIC -ffunction-sections"
export LDFLAGS="-ffunction-sections -Wl,--stub-group-size=25000"
fi
cd ${S}
local myconf=""
use ldap \
&& myconf="${myconf} --with-openldap=yes --with-static-ldap=no" \
|| myconf="${myconf} --with-openldap=no"
use kerberos \
&& myconf="${myconf} --with-krb5=/usr" \
|| myconf="${myconf} --without-krb5"
myconf="${myconf} --with-kde-applnk-path=no"
# Use Mozilla's NSS/NSPR libs if 'mozilla' *and* 'ssl' in USE
# Use standalone NSS/NSPR if only 'ssl' in USE
# Openssl support doesn't work and has been disabled in cvs
if use ssl ; then
if use mozilla ; then
NSS_LIB=/usr/$(get_libdir)/mozilla
NSPR_LIB=/usr/$(get_libdir)/mozilla
NSS_INC=/usr/$(get_libdir)/mozilla/include/nss
NSPR_INC=/usr/$(get_libdir)/mozilla/include/nspr
else
NSS_LIB=/usr/$(get_libdir)/nss
NSPR_LIB=/usr/$(get_libdir)/nspr
NSS_INC=/usr/include/nss
NSPR_INC=/usr/include/nspr
fi
myconf="${myconf} --enable-nss=yes \
--with-nspr-includes=${NSPR_INC} \
--with-nspr-libs=${NSPR_LIB} \
--with-nss-includes=${NSS_INC} \
--with-nss-libs=${NSS_LIB}"
else
myconf="${myconf} --without-nspr-libs --without-nspr-includes \
--without-nss-libs --without-nss-includes"
fi
gnome2_src_configure ${G2CONF} ${myconf}
emake || make || die "make failed"
}
pkg_postinst() {
alternatives_auto_makesym "/usr/bin/evolution" "/usr/bin/evolution-[0-9].[0-9]"
gnome2_gconf_install ${GCONFFILEPATH}
einfo "To change the default browser if you are not using GNOME, do:"
einfo "gconftool-2 --set /desktop/gnome/url-handlers/http/command -t string 'mozilla %s'"
einfo "gconftool-2 --set /desktop/gnome/url-handlers/https/command -t string 'mozilla %s'"
einfo ""
einfo "Replace 'mozilla %s' with which ever browser you use."
}
|