summaryrefslogtreecommitdiffstats
path: root/net-misc/tucan/tucan-0.3.10.ebuild
blob: 535595e79e3c3bf7c69ddced262ec980a7445daf (plain) (blame)
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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"

inherit eutils

DESCRIPTION="Manages automatic downloads and uploads from one-click hosting sites like RapidShare"
HOMEPAGE="http://tucaneando.com/"
SRC_URI="http://forja.rediris.es/frs/download.php/2051/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk"

RDEPEND="dev-lang/python
	gtk? ( dev-python/pygtk
		gnome-base/librsvg )
	app-text/tesseract
	dev-python/imaging"

src_compile() { :; }

src_install() {
	emake DESTDIR="${D}"/usr install || die "emake install failed"
	dodoc CHANGELOG README || die "dodoc failed"
	if use gtk ; then
		doicon media/scalable/tucan.svg || die "doicon failed"
		make_desktop_entry tucan Tucan
	fi
}

pkg_postinst() {
	if ! use gtk ; then
		ewarn "Please be aware that Tucan curses interface is still under"
		ewarn "development."
		ewarn
		ewarn "You should use 'tucan --cli' for curses interface or"
		ewarn "simply use 'tucan --daemon' to use it daemonized."
	fi
}