| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-kolab/evolution-kolab-3.4.3.ebuild,v 1.1 2012/08/13 06:14:00 tetromino Exp $
|
| 4 |
|
| 5 |
EAPI="4"
|
| 6 |
GCONF_DEBUG="no"
|
| 7 |
GNOME2_LA_PUNT="yes"
|
| 8 |
|
| 9 |
inherit autotools eutils gnome2
|
| 10 |
|
| 11 |
DESCRIPTION="Evolution module for connecting to Kolab groupware servers"
|
| 12 |
HOMEPAGE="https://live.gnome.org/Evolution/Kolab"
|
| 13 |
|
| 14 |
LICENSE="LGPL-2.1"
|
| 15 |
SLOT="0"
|
| 16 |
KEYWORDS="~amd64"
|
| 17 |
IUSE="" # doc (gtk-doc fails); kerberos (does nothing useful for now)
|
| 18 |
|
| 19 |
RDEPEND=">=mail-client/evolution-${PV}:2.0
|
| 20 |
>=gnome-extra/evolution-data-server-${PV}
|
| 21 |
>=dev-db/sqlite-3.7:3
|
| 22 |
>=dev-libs/glib-2.30:2
|
| 23 |
>=dev-libs/libical-0.44
|
| 24 |
dev-libs/libxml2
|
| 25 |
dev-libs/nss
|
| 26 |
>=gnome-base/gconf-2:2
|
| 27 |
>=net-libs/libsoup-2.36:2.4
|
| 28 |
>=net-libs/libsoup-gnome-2.36:2.4
|
| 29 |
>=net-misc/curl-7.19[ssl]
|
| 30 |
>=x11-libs/gtk+-3.2:3
|
| 31 |
"
|
| 32 |
DEPEND="${RDEPEND}
|
| 33 |
dev-util/gperf
|
| 34 |
>=dev-util/intltool-0.35.5
|
| 35 |
sys-devel/gettext
|
| 36 |
virtual/pkgconfig
|
| 37 |
dev-util/gtk-doc-am
|
| 38 |
"
|
| 39 |
# doc? (
|
| 40 |
# app-text/docbook-xml-dtd:4.3
|
| 41 |
# >=dev-util/gtk-doc-1.14 )
|
| 42 |
# eautoreconf needs gtk-doc-am
|
| 43 |
|
| 44 |
RESTRICT="test" # test suite is non-functional
|
| 45 |
|
| 46 |
pkg_setup() {
|
| 47 |
DOCS="AUTHORS NEWS"
|
| 48 |
G2CONF="${G2CONF} --without-krb5" # --with-krb5 does nothing useful
|
| 49 |
}
|
| 50 |
|
| 51 |
src_prepare() {
|
| 52 |
# We do not want to install a "hello world" program.
|
| 53 |
epatch "${FILESDIR}/${PN}-3.4.3-no-hello-world.patch"
|
| 54 |
# Disable test suite: parts fail, other parsts require connection to a live
|
| 55 |
# kolab server, plus it installs test executables to /usr/bin
|
| 56 |
epatch "${FILESDIR}/${P}-no-tests.patch"
|
| 57 |
eautoreconf
|
| 58 |
gnome2_src_prepare
|
| 59 |
}
|
| 60 |
|
| 61 |
src_install() {
|
| 62 |
gnome2_src_install
|
| 63 |
rm -rv "${ED}usr/doc" || die "rm failed"
|
| 64 |
}
|