summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2007-12-28 12:52:41 +0000
committerRaúl Porcel <armin76@gentoo.org>2007-12-28 12:52:41 +0000
commit3fa35708a1e96d7dd6f60977237fb0587228a711 (patch)
tree952ef6d115d396aab46584f42a13b92a8521e8d9 /net-p2p
parentAdd a fix for bug #203552. (diff)
downloadgentoo-2-3fa35708a1e96d7dd6f60977237fb0587228a711.tar.gz
gentoo-2-3fa35708a1e96d7dd6f60977237fb0587228a711.tar.bz2
gentoo-2-3fa35708a1e96d7dd6f60977237fb0587228a711.zip
Make it not die with wxpython-2.8 installed, bug #202813, patch by <dynamotwain at aim dot com>
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/bittorrent/ChangeLog6
-rw-r--r--net-p2p/bittorrent/bittorrent-5.0.9.ebuild11
2 files changed, 11 insertions, 6 deletions
diff --git a/net-p2p/bittorrent/ChangeLog b/net-p2p/bittorrent/ChangeLog
index f03736c49289..d865e25c3e95 100644
--- a/net-p2p/bittorrent/ChangeLog
+++ b/net-p2p/bittorrent/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-p2p/bittorrent
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/ChangeLog,v 1.124 2007/11/23 21:14:53 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/ChangeLog,v 1.125 2007/12/28 12:52:41 armin76 Exp $
+
+ 28 Dec 2007; Raúl Porcel <armin76@gentoo.org> bittorrent-5.0.9.ebuild:
+ Make it not die with wxpython-2.8 installed, bug #202813, patch by
+ <dynamotwain at aim dot com>
23 Nov 2007; Markus Rothe <corsair@gentoo.org> bittorrent-5.0.9.ebuild:
Stable on ppc64; bug #199882
diff --git a/net-p2p/bittorrent/bittorrent-5.0.9.ebuild b/net-p2p/bittorrent/bittorrent-5.0.9.ebuild
index 432adbed19af..9bca3a386687 100644
--- a/net-p2p/bittorrent/bittorrent-5.0.9.ebuild
+++ b/net-p2p/bittorrent/bittorrent-5.0.9.ebuild
@@ -1,8 +1,9 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/bittorrent-5.0.9.ebuild,v 1.7 2007/11/23 21:14:53 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/bittorrent-5.0.9.ebuild,v 1.8 2007/12/28 12:52:41 armin76 Exp $
-inherit distutils fdo-mime eutils
+WX_GTK_VER="2.6"
+inherit distutils fdo-mime eutils wxwidgets
MY_P="${P/bittorrent/BitTorrent}"
#MY_P="${MY_P/}"
@@ -35,10 +36,10 @@ PYTHON_MODNAME="BitTorrent"
pkg_setup() {
if use gtk ; then
- if ! built_with_use x11-libs/wxGTK unicode ; then
+ need-wxwidgets unicode ||
die "You must build wxGTK and wxpython with unicode support"
- fi
- if ! built_with_use dev-python/wxpython unicode ; then
+
+ if ! built_with_use =dev-python/wxpython-2.6* unicode ; then
die "You must build wxGTK and wxpython with unicode support"
fi
fi