summaryrefslogtreecommitdiff
blob: afe9078e5230ed6769feb3c0df7f0c6e0ad6fdc4 (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftpcube/ftpcube-0.3.2-r1.ebuild,v 1.1 2002/06/17 18:37:19 bass Exp $

S="${WORKDIR}/${P}"
DESCRIPTION="Graphic ftp client written in python and gtk"
SRC_URI="mirror://sourceforge/ftpcube/${P}.tar.gz"
HOMEPAGE="ftpcube.sf.net"
LICENSE="Artistic"
DEPEND="dev-python/pygtk"
RDEPEND="${DEPEND}"

src_compile() {
	python setup.py clean || die "clean fails"
}

src_install() {
	dobin ftpcube
	dodir /usr/lib/python2.2/site-packages/libftpcube
	insinto /usr/lib/python2.2/site-packages/libftpcube
	doins libftpcube/*
	insinto /usr/share/icons
	doins icons/*	
	dodoc CHANGELOG README
}