+++ /dev/null
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# note: wxGTK interface has been removed wrt #391685. this ebuild is only for
-# cmdline tools as is.
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN=BitTornado
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="TheShad0w's experimental BitTorrent client"
-HOMEPAGE="http://www.bittornado.com/"
-SRC_URI="http://download2.bittornado.com/download/${MY_P}.tar.gz"
-# GPL-2 is just for the init script from FILESDIR.
-LICENSE="MIT GPL-2"
-SLOT="0"
-
-KEYWORDS="~alpha amd64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE=""
-
-RDEPEND="dev-python/pycrypto[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- app-arch/unzip
- >=sys-apps/sed-4.0.5"
-
-S=${WORKDIR}/${MY_PN}-CVS
-PIXMAPLOC=/usr/share/pixmaps/bittornado
-
-python_prepare_all() {
- # fixes wrong icons path
- sed -i "s:os.path.abspath(os.path.dirname(os.path.realpath(sys.argv\[0\]))):\"${PIXMAPLOC}/\":" btdownloadgui.py
- # Needs wxpython-2.6 only, bug #201247
- eapply "${FILESDIR}"/${P}-wxversion.patch
-
- distutils-r1_python_prepare_all
-}
-
-python_install() {
- distutils-r1_python_install
-
- # get rid of any reference to the not-installed gui version
- rm "${ED%/}"/usr/bin/*gui.py || die
- rm "${D}/$(python_get_scriptdir)"/*gui.py || die
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- newconfd "${FILESDIR}"/bttrack.conf bttrack
- newinitd "${FILESDIR}"/bttrack.rc bttrack
-}
+++ /dev/null
-diff -Naur BitTornado-CVS-orig/btcompletedirgui.py BitTornado-CVS/btcompletedirgui.py
---- BitTornado-CVS-orig/btcompletedirgui.py 2006-12-23 12:20:52.000000000 -0600
-+++ BitTornado-CVS/btcompletedirgui.py 2007-12-04 11:09:36.000000000 -0600
-@@ -19,12 +19,16 @@
- import sys
- from os import getcwd
- from os.path import join
-+
- try:
-- from wxPython.wx import *
--except:
-- print 'wxPython is either not installed or has not been installed properly.'
-+ import wxversion
-+ wxversion.select("2.6")
-+except Exception, e:
-+ print >> sys.stderr, "%s: wxPython 2.6 not installed." %e
- sys.exit(1)
-
-+from wxPython.wx import *
-+
- try:
- True
- except:
-diff -Naur BitTornado-CVS-orig/btdownloadgui.py BitTornado-CVS/btdownloadgui.py
---- BitTornado-CVS-orig/btdownloadgui.py 2007-12-04 11:06:58.000000000 -0600
-+++ BitTornado-CVS/btdownloadgui.py 2007-12-04 11:10:36.000000000 -0600
-@@ -18,10 +18,13 @@
- assert version >= '2', "Install Python 2.0 or greater"
-
- try:
-- from wxPython.wx import *
--except:
-- print 'wxPython is either not installed or has not been installed properly.'
-- exit(1)
-+ import wxversion
-+ wxversion.select("2.6")
-+except Exception, e:
-+ print >> sys.stderr, "%s: wxPython 2.6 not installed." %e
-+ sys.exit(1)
-+
-+from wxPython.wx import *
- from BitTornado.download_bt1 import BT1Download, defaults, parse_params, get_usage, get_response
- from BitTornado.RawServer import RawServer, UPnP_ERROR
- from random import seed
-diff -Naur BitTornado-CVS-orig/btmaketorrentgui.py BitTornado-CVS/btmaketorrentgui.py
---- BitTornado-CVS-orig/btmaketorrentgui.py 2006-12-23 12:20:56.000000000 -0600
-+++ BitTornado-CVS/btmaketorrentgui.py 2007-12-04 11:11:30.000000000 -0600
-@@ -21,12 +21,16 @@
- import sys
- from os import getcwd
- from os.path import join, isdir
-+
- try:
-- from wxPython.wx import *
--except:
-- print 'wxPython is either not installed or has not been installed properly.'
-+ import wxversion
-+ wxversion.select("2.6")
-+except Exception, e:
-+ print >> sys.stderr, "%s: wxPython 2.6 not installed." %e
- sys.exit(1)
-
-+from wxPython.wx import *
-+
- try:
- True
- except:
-diff -Naur BitTornado-CVS-orig/bt-t-make.py BitTornado-CVS/bt-t-make.py
---- BitTornado-CVS-orig/bt-t-make.py 2006-12-23 12:20:52.000000000 -0600
-+++ BitTornado-CVS/bt-t-make.py 2007-12-04 11:14:35.000000000 -0600
-@@ -22,12 +22,16 @@
- from os import getcwd, listdir
- from os.path import join, isdir
- from traceback import print_exc
-+
- try:
-- from wxPython.wx import *
--except:
-- print 'wxPython is either not installed or has not been installed properly.'
-+ import wxversion
-+ wxversion.select("2.6")
-+except Exception, e:
-+ print >> sys.stderr, "%s: wxPython 2.6 not installed." %e
- sys.exit(1)
-
-+from wxPython.wx import *
-+
- try:
- True
- except: