summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Hood <squinky86@gentoo.org>2004-08-14 00:44:00 +0000
committerJon Hood <squinky86@gentoo.org>2004-08-14 00:44:00 +0000
commit89773732d612f393bfe447b9cdfa8faebde59820 (patch)
tree3205bec56549a75a5cf7bbc8b1a7c16c5ee47d9e /net-p2p/bittornado
parentPatch missing parenthesis. Thanks spyderous (diff)
downloadhistorical-89773732d612f393bfe447b9cdfa8faebde59820.tar.gz
historical-89773732d612f393bfe447b9cdfa8faebde59820.tar.bz2
historical-89773732d612f393bfe447b9cdfa8faebde59820.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.2.ebuild65
-rw-r--r--net-p2p/bittornado/bittornado-0.3.3.ebuild65
-rw-r--r--net-p2p/bittornado/bittornado-0.3.6.ebuild4
-rw-r--r--net-p2p/bittornado/files/digest-bittornado-0.3.21
-rw-r--r--net-p2p/bittornado/files/digest-bittornado-0.3.31
6 files changed, 7 insertions, 135 deletions
diff --git a/net-p2p/bittornado/ChangeLog b/net-p2p/bittornado/ChangeLog
index 855178d38916..0c4ae2201084 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.22 2004/07/17 15:12:51 squinky86 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/ChangeLog,v 1.23 2004/08/14 00:41:35 squinky86 Exp $
+
+ 13 Aug 2004; Jon Hood <squinky86@gentoo.org> -bittornado-0.3.2.ebuild,
+ -bittornado-0.3.3.ebuild, bittornado-0.3.6.ebuild:
+ Stable on x86; clean up old ebuilds.
17 Jul 2004; Jon Hood <squinky86@gentoo.org> +files/bttrack.conf,
+files/bttrack.rc, +files/favicon.ico, bittornado-0.3.7.ebuild:
diff --git a/net-p2p/bittornado/bittornado-0.3.2.ebuild b/net-p2p/bittornado/bittornado-0.3.2.ebuild
deleted file mode 100644
index bf86147f69d3..000000000000
--- a/net-p2p/bittornado/bittornado-0.3.2.ebuild
+++ /dev/null
@@ -1,65 +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.2.ebuild,v 1.5 2004/07/06 09:57:00 kang 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
-}
-
-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.3.ebuild b/net-p2p/bittornado/bittornado-0.3.3.ebuild
deleted file mode 100644
index 790f16342ff3..000000000000
--- a/net-p2p/bittornado/bittornado-0.3.3.ebuild
+++ /dev/null
@@ -1,65 +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.3.ebuild,v 1.3 2004/07/06 09:57:00 kang 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
-}
-
-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.6.ebuild b/net-p2p/bittornado/bittornado-0.3.6.ebuild
index 1859f223b8de..13d7a56a55b8 100644
--- a/net-p2p/bittornado/bittornado-0.3.6.ebuild
+++ b/net-p2p/bittornado/bittornado-0.3.6.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.6.ebuild,v 1.1 2004/07/13 15:03:08 mholzer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/bittornado-0.3.6.ebuild,v 1.2 2004/08/14 00:41:35 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"
+KEYWORDS="x86 ~amd64 ~ppc"
IUSE="X"
RDEPEND="X? ( >=dev-python/wxpython-2.2 )
diff --git a/net-p2p/bittornado/files/digest-bittornado-0.3.2 b/net-p2p/bittornado/files/digest-bittornado-0.3.2
deleted file mode 100644
index 3fb37ebf5633..000000000000
--- a/net-p2p/bittornado/files/digest-bittornado-0.3.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 469a6e4283af4636c729b70ce89a425a BitTornado-0.3.2.tar.gz 175324
diff --git a/net-p2p/bittornado/files/digest-bittornado-0.3.3 b/net-p2p/bittornado/files/digest-bittornado-0.3.3
deleted file mode 100644
index a1f28a2ac92f..000000000000
--- a/net-p2p/bittornado/files/digest-bittornado-0.3.3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 5b5178d9c7fa1b6552f88c0218f37cf1 BitTornado-0.3.3.tar.gz 175845