summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Alberto Suarez Lopez <bass@gentoo.org>2002-06-17 18:37:19 +0000
committerJose Alberto Suarez Lopez <bass@gentoo.org>2002-06-17 18:37:19 +0000
commit275733aa1387310c56829165944ab83cb124047a (patch)
treee377385a06298f765e4a5df6c5e69b683e2f638b /net-ftp
parentadd header (diff)
downloadgentoo-2-275733aa1387310c56829165944ab83cb124047a.tar.gz
gentoo-2-275733aa1387310c56829165944ab83cb124047a.tar.bz2
gentoo-2-275733aa1387310c56829165944ab83cb124047a.zip
alt install
Diffstat (limited to 'net-ftp')
-rw-r--r--net-ftp/ftpcube/ChangeLog4
-rw-r--r--net-ftp/ftpcube/files/digest-ftpcube-0.3.2-r11
-rw-r--r--net-ftp/ftpcube/ftpcube-0.3.2-r1.ebuild25
3 files changed, 30 insertions, 0 deletions
diff --git a/net-ftp/ftpcube/ChangeLog b/net-ftp/ftpcube/ChangeLog
index f9dd3b1193fe..4e6b7c27ce29 100644
--- a/net-ftp/ftpcube/ChangeLog
+++ b/net-ftp/ftpcube/ChangeLog
@@ -4,6 +4,10 @@
*ftpcube-0.3.2 (13 Jun 2002)
+ 17 Jun 2002; J.Alberto S.L. <bass@gentoo.org> ftpcube-0.3.2-r1.ebuild:
+ This only use an alternative installation mode for who have
+ problems with the distutils of python
+
13 Jun 2002; J.Alberto S.L. <bass@gentoo.org> ftpcube-0.3.2.ebuild:
new version
diff --git a/net-ftp/ftpcube/files/digest-ftpcube-0.3.2-r1 b/net-ftp/ftpcube/files/digest-ftpcube-0.3.2-r1
new file mode 100644
index 000000000000..dfbbf655c9ba
--- /dev/null
+++ b/net-ftp/ftpcube/files/digest-ftpcube-0.3.2-r1
@@ -0,0 +1 @@
+MD5 0786b2466030dc4f63e9619d5b7c0566 ftpcube-0.3.2.tar.gz 82407
diff --git a/net-ftp/ftpcube/ftpcube-0.3.2-r1.ebuild b/net-ftp/ftpcube/ftpcube-0.3.2-r1.ebuild
new file mode 100644
index 000000000000..afe9078e5230
--- /dev/null
+++ b/net-ftp/ftpcube/ftpcube-0.3.2-r1.ebuild
@@ -0,0 +1,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
+}