summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Alberto Suarez Lopez <bass@gentoo.org>2002-08-20 01:33:34 +0000
committerJose Alberto Suarez Lopez <bass@gentoo.org>2002-08-20 01:33:34 +0000
commit01adb3b030af5f151e08e0120f29c2dff52fd0b8 (patch)
tree47183a8e9fd8582eeec46ced6b3bb1f49a323892 /net-ftp
parentAdding sparc exceptions for build (diff)
downloadhistorical-01adb3b030af5f151e08e0120f29c2dff52fd0b8.tar.gz
historical-01adb3b030af5f151e08e0120f29c2dff52fd0b8.tar.bz2
historical-01adb3b030af5f151e08e0120f29c2dff52fd0b8.zip
New version
Diffstat (limited to 'net-ftp')
-rw-r--r--net-ftp/ftpcube/ChangeLog5
-rw-r--r--net-ftp/ftpcube/files/digest-ftpcube-0.3.31
-rw-r--r--net-ftp/ftpcube/ftpcube-0.3.3.ebuild29
3 files changed, 34 insertions, 1 deletions
diff --git a/net-ftp/ftpcube/ChangeLog b/net-ftp/ftpcube/ChangeLog
index 1f34c8ac446a..715bebab4eac 100644
--- a/net-ftp/ftpcube/ChangeLog
+++ b/net-ftp/ftpcube/ChangeLog
@@ -2,7 +2,10 @@
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
# Author: José Alberto Suárez López <bass@gentoo.org>
-
+*ftpcube-0.3.3 (20 Aug 2002)
+ 20 Aug 2002; J.Alberto S.L. <bass@gentoo.org> ftpcube-0.3.3.ebuild:
+ new version
+
*ftpcube-0.3.2 (13 Jun 2002)
21 Jun 2002; Spider <spider@gentoo.org> ftpcube-0.3.2-r2.ebuild :
Tweaked the depenendencies so it doesn't break with pygtk-1.99.x series. incompatible with the new gnome bindings.
diff --git a/net-ftp/ftpcube/files/digest-ftpcube-0.3.3 b/net-ftp/ftpcube/files/digest-ftpcube-0.3.3
new file mode 100644
index 000000000000..9db8133236b3
--- /dev/null
+++ b/net-ftp/ftpcube/files/digest-ftpcube-0.3.3
@@ -0,0 +1 @@
+MD5 ef95c4c94e964c0b80863b7b36048ea0 ftpcube-0.3.3.tar.gz 94478
diff --git a/net-ftp/ftpcube/ftpcube-0.3.3.ebuild b/net-ftp/ftpcube/ftpcube-0.3.3.ebuild
new file mode 100644
index 000000000000..2f9bbd455a48
--- /dev/null
+++ b/net-ftp/ftpcube/ftpcube-0.3.3.ebuild
@@ -0,0 +1,29 @@
+# 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.3.ebuild,v 1.1 2002/08/20 01:33:34 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"
+DEPEND="<dev-python/pygtk-1.99.0"
+
+SLOT="0"
+LICENSE="Artistic"
+KEYWORDS="x86 sparc sparc64"
+
+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/*
+ dodir /usr/share/ftpcube/icons
+ insinto /usr/share/ftpcube/icons
+ doins icons/*
+ dosym /usr/share/ftpcube/icons/ftpcube.xpm /usr/share/icons
+ dodoc CHANGELOG README
+}