blob: 91794c6885792549126292e3e3a7c66e31c983c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/qtorrent/qtorrent-0.9.6.1-r2.ebuild,v 1.1 2006/02/25 11:57:02 lucass Exp $
inherit eutils distutils
DESCRIPTION="QTorrent is a PyQt GUI for BitTorrent."
HOMEPAGE="http://thegraveyard.org/qtorrent.php"
SRC_URI="http://thegraveyard.org/files/${P}.tar.bz2
mirror://gentoo/${P}-sizetype.patch"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc ~sparc"
IUSE=""
DEPEND="dev-python/PyQt"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${DISTDIR}/${P}-sizetype.patch
# see bug #118234
sed -e 's/getOpenFileName(None,/getOpenFileName("",/' \
-i pyqtorrent/torrentmain.py
}
|