diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-12-28 18:14:56 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-12-28 18:14:56 +0000 |
commit | 7d574d8268a1a4d6ab21e9fa45bb5c4c8cf355b9 (patch) | |
tree | 1d2b3954120a4d337e1f32b63de6019e8718df50 /net-p2p | |
parent | Keyworded ~x86-fbsd. (diff) | |
download | gentoo-2-7d574d8268a1a4d6ab21e9fa45bb5c4c8cf355b9.tar.gz gentoo-2-7d574d8268a1a4d6ab21e9fa45bb5c4c8cf355b9.tar.bz2 gentoo-2-7d574d8268a1a4d6ab21e9fa45bb5c4c8cf355b9.zip |
Die, dont warn, if dependency checks fail #153875 by Jory A. Pratt.
(Portage version: 2.1.2_rc4-r1)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/bittorrent/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/bittorrent/bittorrent-4.26.0.ebuild | 16 |
2 files changed, 13 insertions, 10 deletions
diff --git a/net-p2p/bittorrent/ChangeLog b/net-p2p/bittorrent/ChangeLog index aa8290db0e4f..42d23c6d04df 100644 --- a/net-p2p/bittorrent/ChangeLog +++ b/net-p2p/bittorrent/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-p2p/bittorrent -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/ChangeLog,v 1.91 2006/10/21 15:24:57 squinky86 Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/ChangeLog,v 1.92 2006/12/28 18:14:56 vapier Exp $ + + 28 Dec 2006; Mike Frysinger <vapier@gentoo.org> bittorrent-4.26.0.ebuild: + Die, dont warn, if dependency checks fail #153875 by Jory A. Pratt. *bittorrent-4.26.0 (21 Oct 2006) diff --git a/net-p2p/bittorrent/bittorrent-4.26.0.ebuild b/net-p2p/bittorrent/bittorrent-4.26.0.ebuild index e95ddf4811c9..32550d455575 100644 --- a/net-p2p/bittorrent/bittorrent-4.26.0.ebuild +++ b/net-p2p/bittorrent/bittorrent-4.26.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/bittorrent-4.26.0.ebuild,v 1.1 2006/10/21 15:24:57 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/bittorrent-4.26.0.ebuild,v 1.2 2006/12/28 18:14:56 vapier Exp $ inherit distutils fdo-mime eutils @@ -32,16 +32,16 @@ DEPEND="${RDEPEND} dev-python/dnspython" PROVIDE="virtual/bittorrent" -DOCS="TRACKERLESS.txt LICENSE.txt public.key" +DOCS="TRACKERLESS.txt public.key" PYTHON_MODNAME="BitTorrent" pkg_setup() { - if use gtk; then - if ! built_with_use x11-libs/wxGTK unicode; then - eerror "You must build wxGTK and wxpython with unicode support" + if use gtk ; then + if ! built_with_use x11-libs/wxGTK unicode ; then + die "You must build wxGTK and wxpython with unicode support" fi - if ! built_with_use dev-python/wxpython unicode; then - eerror "You must build wxGTK and wxpython with unicode support" + if ! built_with_use dev-python/wxpython unicode ; then + die "You must build wxGTK and wxpython with unicode support" fi fi } @@ -56,7 +56,7 @@ src_unpack() { src_install() { distutils_src_install - if ! use gtk; then + if ! use gtk ; then rm ${D}/usr/bin/bittorrent fi dohtml redirdonate.html |