summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Tse <liquidx@gentoo.org>2003-04-02 21:36:11 +0000
committerAlastair Tse <liquidx@gentoo.org>2003-04-02 21:36:11 +0000
commitc52258a6c0cfa73286862f05d2768a08436aa35b (patch)
treeed7d62247a2198937b1ff040222b2744bec16b2e /net-ftp/ftpcube
parentUpdated SRC_URI and Homepage. Closes #18654. (diff)
downloadgentoo-2-c52258a6c0cfa73286862f05d2768a08436aa35b.tar.gz
gentoo-2-c52258a6c0cfa73286862f05d2768a08436aa35b.tar.bz2
gentoo-2-c52258a6c0cfa73286862f05d2768a08436aa35b.zip
version bump
Diffstat (limited to 'net-ftp/ftpcube')
-rw-r--r--net-ftp/ftpcube/ChangeLog8
-rw-r--r--net-ftp/ftpcube/files/digest-ftpcube-0.4.21
-rw-r--r--net-ftp/ftpcube/files/ftpcube-0.4.2-gentoo.patch19
-rw-r--r--net-ftp/ftpcube/ftpcube-0.4.2.ebuild23
4 files changed, 50 insertions, 1 deletions
diff --git a/net-ftp/ftpcube/ChangeLog b/net-ftp/ftpcube/ChangeLog
index 314f905d3684..2f4e8a46135c 100644
--- a/net-ftp/ftpcube/ChangeLog
+++ b/net-ftp/ftpcube/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-ftp/ftpcube
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftpcube/ChangeLog,v 1.11 2003/03/31 02:12:48 liquidx Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftpcube/ChangeLog,v 1.12 2003/04/02 21:36:11 liquidx Exp $
+
+*ftpcube-0.4.2 (02 Apr 2003)
+
+ 02 Apr 2003; Alastair Tse <liquidx@gentoo.org> ftpcube-0.4.2.ebuild,
+ files/ftpcube-0.4.2-gentoo.patch:
+ version bump. thanks to zul <chuck_short@rogers.com>. fixes #18624.
*ftpcube-0.4.1 (31 Mar 2003)
diff --git a/net-ftp/ftpcube/files/digest-ftpcube-0.4.2 b/net-ftp/ftpcube/files/digest-ftpcube-0.4.2
new file mode 100644
index 000000000000..881e5ed06546
--- /dev/null
+++ b/net-ftp/ftpcube/files/digest-ftpcube-0.4.2
@@ -0,0 +1 @@
+MD5 447fcb05a8b4e1215a89c0ac70c037d9 ftpcube-0.4.2.tar.gz 88833
diff --git a/net-ftp/ftpcube/files/ftpcube-0.4.2-gentoo.patch b/net-ftp/ftpcube/files/ftpcube-0.4.2-gentoo.patch
new file mode 100644
index 000000000000..d52504c4f3a7
--- /dev/null
+++ b/net-ftp/ftpcube/files/ftpcube-0.4.2-gentoo.patch
@@ -0,0 +1,19 @@
+--- ftpcube-0.4.2/setup.py 2003-03-29 07:39:17.000000000 +0000
++++ ftpcube-0.4.2-chuck/setup.py 2003-04-01 22:14:48.000000000 +0000
+@@ -43,7 +43,7 @@
+ _packages = [ 'libftpcube', 'libftpcube/archtypes', 'libftpcube/icons' ]
+ try:
+ from libftpcube import wxPyColourChooser
+- _packages.append ('libftpcube/wxPyColourChooser')
++# _packages.append ('libftpcube/wxPyColourChooser')
+ except:
+ pass
+
+--- ftpcube-0.4.2/setup.cfg 2002-11-16 04:51:05.000000000 +0000
++++ ftpcube-0.4.2-chuck/setup.cfg 2003-04-01 22:10:49.000000000 +0000
+@@ -1,3 +1,3 @@
+ [install]
+-install_data=/usr/local/share
+-install_scripts=/usr/local/bin
++install_data=/usr/share
++install_scripts=/usr/bin
diff --git a/net-ftp/ftpcube/ftpcube-0.4.2.ebuild b/net-ftp/ftpcube/ftpcube-0.4.2.ebuild
new file mode 100644
index 000000000000..e5f2155eca97
--- /dev/null
+++ b/net-ftp/ftpcube/ftpcube-0.4.2.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftpcube/ftpcube-0.4.2.ebuild,v 1.1 2003/04/02 21:36:11 liquidx Exp $
+
+IUSE=""
+
+inherit distutils
+
+S="${WORKDIR}/${P}"
+DESCRIPTION="Graphical FTP client using wxPython"
+SRC_URI="mirror://sourceforge/ftpcube/${P}.tar.gz"
+HOMEPAGE="http://ftpcube.sourceforge.net/"
+DEPEND="virtual/python
+ >=dev-python/wxPython-2.4.0.2"
+
+SLOT="0"
+LICENSE="Artistic"
+KEYWORDS="~x86 ~sparc"
+
+src_unpack() {
+ unpack ${A}
+ epatch ${FILESDIR}/${P}-gentoo.patch || die "patch failed"
+}