blob: 33ae574410049bc41a2a4031cf514e31b75efc1b (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit gnome2 python multilib
DESCRIPTION="A Desktop Synchronization Solution for GNOME"
HOMEPAGE="http://www.conduit-project.org/"
SRC_URI="http://files.conduit-project.org/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="python"
RDEPEND=">=virtual/python-2.4
>=x11-libs/gtk+-2.10
>=sys-apps/dbus-0.93
>=dev-python/pygtk-2.10
dev-python/pyxml
dev-python/vobject
dev-python/dbus-python
dev-python/pygoocanvas
dev-python/gnome-python
dev-python/python-dateutil
dev-python/elementtree
python? ( >=dev-python/evolution-python-0.0.3 )"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/pkgconfig-0.19"
pkg_postinst() {
python_version
python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/conduit
}
pkg_postrm() {
python_version
python_mod_cleanup
}
|