blob: 58169deb3a398c0beaa8a8b84724df5d4df46f39 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/telepathy-mission-control-4.67.ebuild,v 1.4 2009/12/27 08:12:15 josejx Exp $
inherit eutils
DESCRIPTION="Nokia's implementation of a Telepathy Mission Control"
HOMEPAGE="http://mission-control.sourceforge.net/"
SRC_URI="mirror://sourceforge/mission-control/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc gnome-keyring"
RDEPEND=">=net-libs/libtelepathy-0.3.2
net-libs/telepathy-glib
>=dev-libs/dbus-glib-0.51
>=gnome-base/gconf-2
gnome-keyring? ( >=gnome-base/gnome-keyring-2.22 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-libs/libxslt
doc? ( dev-util/gtk-doc )
virtual/python"
src_compile() {
econf $(use_enable doc gtk-doc) \
$(use_enable gnome-keyring keyring) \
--enable-server
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog
}
|