summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Hood <squinky86@gentoo.org>2004-08-16 03:27:53 +0000
committerJon Hood <squinky86@gentoo.org>2004-08-16 03:27:53 +0000
commitee30b3eccb349d0fd185ff280aca833594b4b3e0 (patch)
treeeba7eb91e4ea77fbb67b4f75a28b007611200a20 /net-p2p/bittornado
parentStable on sparc. (diff)
downloadhistorical-ee30b3eccb349d0fd185ff280aca833594b4b3e0.tar.gz
historical-ee30b3eccb349d0fd185ff280aca833594b4b3e0.tar.bz2
historical-ee30b3eccb349d0fd185ff280aca833594b4b3e0.zip
stable on x86
Diffstat (limited to 'net-p2p/bittornado')
-rw-r--r--net-p2p/bittornado/ChangeLog6
-rw-r--r--net-p2p/bittornado/bittornado-0.3.4.ebuild66
-rw-r--r--net-p2p/bittornado/bittornado-0.3.7.ebuild4
-rw-r--r--net-p2p/bittornado/files/digest-bittornado-0.3.41
4 files changed, 7 insertions, 70 deletions
diff --git a/net-p2p/bittornado/ChangeLog b/net-p2p/bittornado/ChangeLog
index ca93c50b708a..28618e90940a 100644
--- a/net-p2p/bittornado/ChangeLog
+++ b/net-p2p/bittornado/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-p2p/bittornado
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/ChangeLog,v 1.24 2004/08/14 13:52:43 weeve Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/ChangeLog,v 1.25 2004/08/16 03:22:56 squinky86 Exp $
+
+ 15 Aug 2004; Jon Hood <squinky86@gentoo.org> -bittornado-0.3.4.ebuild,
+ bittornado-0.3.7.ebuild:
+ Stable on x86, cleanup old versions.
14 Aug 2004; Jason Wever <weeve@gentoo.org> bittornado-0.3.7.ebuild:
Added ~sparc keyword.
diff --git a/net-p2p/bittornado/bittornado-0.3.4.ebuild b/net-p2p/bittornado/bittornado-0.3.4.ebuild
deleted file mode 100644
index 6bf887cebf09..000000000000
--- a/net-p2p/bittornado/bittornado-0.3.4.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/bittornado-0.3.4.ebuild,v 1.3 2004/07/13 15:05:05 mholzer Exp $
-
-inherit distutils eutils
-
-MY_PN="BitTornado"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="TheShad0w's experimental BitTorrent client"
-HOMEPAGE="http://www.bittornado.com/"
-SRC_URI="http://e.scarywater.net/bt/download/${MY_P}.tar.gz"
-LICENSE="MIT"
-SLOT="0"
-
-KEYWORDS="x86 ~amd64 ~ppc"
-IUSE="X"
-
-RDEPEND="X? ( >=dev-python/wxpython-2.2 )
- >=dev-lang/python-2.1
- !virtual/bittorrent"
-DEPEND="${RDEPEND}
- app-arch/unzip
- >=sys-apps/sed-4.0.5"
-PROVIDE="virtual/bittorrent"
-
-S="${WORKDIR}/${MY_PN}-CVS"
-PIXMAPLOC="/usr/share/pixmaps/bittornado"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- # fixes wrong icons path
- sed -i "s:os.path.abspath(os.path.dirname(os.path.realpath(sys.argv\[0\]))):\"${PIXMAPLOC}/\":" btdownloadgui.py
- # fixes a bug with < wxpython-2.5 which is not yet available in portage
- epatch ${FILESDIR}/${PN}-wxpython-pre2.5-fix.patch
-}
-
-src_install() {
- distutils_src_install
-
- dodir etc
- cp -a /etc/mailcap ${D}/etc/
- MAILCAP_STRING="application/x-bittorrent; /usr/bin/btdownloadgui.py '%s'; test=test -n \"\$DISPLAY\""
-
- if use X; then
- dodir ${PIXMAPLOC}
- insinto ${PIXMAPLOC}
- doins *.ico *.gif
- if [ -n "`grep 'application/x-bittorrent' ${D}/etc/mailcap`" ]; then
- # replace bittorrent entry if it already exists
- einfo "updating bittorrent mime info"
- sed -i "s,application/x-bittorrent;.*,${MAILCAP_STRING}," ${D}/etc/mailcap
- else
- # add bittorrent entry if it doesn't exist
- einfo "adding bittorrent mime info"
- echo "${MAILCAP_STRING}" >> ${D}/etc/mailcap
- fi
- else
- # get rid of any reference to the not-installed gui version
- sed -i '/btdownloadgui/d' ${D}/etc/mailcap
- rm ${D}/usr/bin/*gui.py
- fi
-}
-
diff --git a/net-p2p/bittornado/bittornado-0.3.7.ebuild b/net-p2p/bittornado/bittornado-0.3.7.ebuild
index 2e6ff604e5c4..1a86d059de3a 100644
--- a/net-p2p/bittornado/bittornado-0.3.7.ebuild
+++ b/net-p2p/bittornado/bittornado-0.3.7.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/bittornado-0.3.7.ebuild,v 1.4 2004/08/14 13:52:43 weeve Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/bittornado-0.3.7.ebuild,v 1.5 2004/08/16 03:22:56 squinky86 Exp $
inherit distutils eutils
@@ -13,7 +13,7 @@ SRC_URI="http://e.scarywater.net/bt/download/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~x86 ~amd64 ~ppc ~sparc"
+KEYWORDS="x86 ~amd64 ~ppc ~sparc"
IUSE="X"
RDEPEND="X? ( >=dev-python/wxpython-2.2 )
diff --git a/net-p2p/bittornado/files/digest-bittornado-0.3.4 b/net-p2p/bittornado/files/digest-bittornado-0.3.4
deleted file mode 100644
index 95b1aa402aa7..000000000000
--- a/net-p2p/bittornado/files/digest-bittornado-0.3.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8663c2d0daa1fabcf7df94671dc36a25 BitTornado-0.3.4.tar.gz 175418