summaryrefslogtreecommitdiff
blob: 9eccbb6fba4caf550c4c6277ac45046bf8e7fff3 (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils

DESCRIPTION="Synchronization for GNOME"
HOMEPAGE="http://www.conduit-project.org"
SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/conduit/0.3/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="nautilus eog"

DEPEND=">=dev-python/pygoocanvas-0.9.0
		>=dev-python/vobject-0.4.8
		>=dev-python/pyxml-0.8.4
		>=dev-python/pygtk-2.10.3
		>=dev-python/pysqlite-2.3.1"
RDEPEND=">=dev-python/pygoocanvas-0.9.0"

src_unpack() {
	unpack ${A}

	epatch ${FILESDIR}/${P}_correct_firefox_path.patch
}

src_compile() {

	econf \
        	$(use_enable nautilus nautilus-extension) \
        	$(use_enable eog eog-plugin) \
        || die "configure failed"


	emake || die "emake failed"
}

src_install() {
	make DESTDIR="${D}" install || die "Error installing ${PN}"
}