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
commit5e6f1e849679ab485c8ebd912ef6b65a3140b026 (patch)
treee3200651847136f96f73e9a4a073b6871f40970c /net-ftp
parentadd header (diff)
downloadhistorical-5e6f1e849679ab485c8ebd912ef6b65a3140b026.tar.gz
historical-5e6f1e849679ab485c8ebd912ef6b65a3140b026.tar.bz2
historical-5e6f1e849679ab485c8ebd912ef6b65a3140b026.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
+}