summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2004-06-01 21:27:19 +0000
committerMartin Holzer <mholzer@gentoo.org>2004-06-01 21:27:19 +0000
commit129416150ab8659a8e2a5cda0f6310f5037ea694 (patch)
treedd4b4f9320328ff80f7f7326598fa39b90422866 /net-p2p
parentdon't assign default to S; fix depend; tidy (Manifest recommit) (diff)
downloadgentoo-2-129416150ab8659a8e2a5cda0f6310f5037ea694.tar.gz
gentoo-2-129416150ab8659a8e2a5cda0f6310f5037ea694.tar.bz2
gentoo-2-129416150ab8659a8e2a5cda0f6310f5037ea694.zip
x86 stable
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/bittornado/ChangeLog5
-rw-r--r--net-p2p/bittornado/bittornado-0.1.4.ebuild68
-rw-r--r--net-p2p/bittornado/bittornado-0.2.0.ebuild68
-rw-r--r--net-p2p/bittornado/bittornado-0.3.0.ebuild4
-rw-r--r--net-p2p/bittornado/bittornado-0.3.1.ebuild5
-rw-r--r--net-p2p/bittornado/files/digest-bittornado-0.1.41
-rw-r--r--net-p2p/bittornado/files/digest-bittornado-0.2.01
7 files changed, 7 insertions, 145 deletions
diff --git a/net-p2p/bittornado/ChangeLog b/net-p2p/bittornado/ChangeLog
index 72649a48dbe9..2781dfa61aee 100644
--- a/net-p2p/bittornado/ChangeLog
+++ b/net-p2p/bittornado/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-p2p/bittornado
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/ChangeLog,v 1.11 2004/05/21 18:12:04 squinky86 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/ChangeLog,v 1.12 2004/06/01 21:27:19 mholzer Exp $
+
+ 02 Jun 2004; Martin Holzer <mholzer@gentoo.org> bittornado-0.3.0.ebuild:
+ x86 stable.
*bittornado-0.3.1 (21 May 2004)
diff --git a/net-p2p/bittornado/bittornado-0.1.4.ebuild b/net-p2p/bittornado/bittornado-0.1.4.ebuild
deleted file mode 100644
index 89545db2fdc6..000000000000
--- a/net-p2p/bittornado/bittornado-0.1.4.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/bittornado-0.1.4.ebuild,v 1.4 2004/05/16 12:52:26 mholzer Exp $
-
-inherit distutils
-inherit 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"
-IUSE="X"
-
-RDEPEND="X? ( >=dev-python/wxPython-2.2 )
- >=dev-lang/python-2.0
- !virtual/bittorrent"
-
-DEPEND="${RDEPEND}
- >=sys-apps/sed-4.0.5"
-
-PROVIDE="virtual/bittorrent"
-
-S="${WORKDIR}/${MY_PN}-CVS"
-PIXMAPLOC="/usr/share/pixmaps/bittornado"
-
-src_unpack() {
- unpack ${A}
-
- # fixes wrong icons path
- sed -i "s:os.path.abspath(os.path.dirname(os.path.realpath(sys.argv\[0\]))):\"${PIXMAPLOC}/\":" ${S}/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\""
-
- rm ${D}/usr/bin/*.ico
- rm ${D}/usr/bin/*.gif
-
- 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.2.0.ebuild b/net-p2p/bittornado/bittornado-0.2.0.ebuild
deleted file mode 100644
index 7a4c3854379c..000000000000
--- a/net-p2p/bittornado/bittornado-0.2.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/bittornado-0.2.0.ebuild,v 1.3 2004/05/16 12:52:26 mholzer Exp $
-
-inherit distutils
-inherit 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.0
- !virtual/bittorrent"
-
-DEPEND="${RDEPEND}
- >=sys-apps/sed-4.0.5"
-
-PROVIDE="virtual/bittorrent"
-
-S="${WORKDIR}/${MY_PN}-CVS"
-PIXMAPLOC="/usr/share/pixmaps/bittornado"
-
-src_unpack() {
- unpack ${A}
-
- # fixes wrong icons path
- sed -i "s:os.path.abspath(os.path.dirname(os.path.realpath(sys.argv\[0\]))):\"${PIXMAPLOC}/\":" ${S}/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\""
-
- rm ${D}/usr/bin/*.ico
- rm ${D}/usr/bin/*.gif
-
- 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.0.ebuild b/net-p2p/bittornado/bittornado-0.3.0.ebuild
index 44d39bcdc5da..630fff177bc9 100644
--- a/net-p2p/bittornado/bittornado-0.3.0.ebuild
+++ b/net-p2p/bittornado/bittornado-0.3.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/bittornado-0.3.0.ebuild,v 1.1 2004/05/16 14:20:53 mholzer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/bittornado-0.3.0.ebuild,v 1.2 2004/06/01 21:27:19 mholzer Exp $
inherit distutils
inherit eutils
@@ -14,7 +14,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/bittornado-0.3.1.ebuild b/net-p2p/bittornado/bittornado-0.3.1.ebuild
index a8523a6e6834..4b34169dcc25 100644
--- a/net-p2p/bittornado/bittornado-0.3.1.ebuild
+++ b/net-p2p/bittornado/bittornado-0.3.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/bittornado-0.3.1.ebuild,v 1.1 2004/05/21 18:12:04 squinky86 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittornado/bittornado-0.3.1.ebuild,v 1.2 2004/06/01 21:27:19 mholzer Exp $
inherit distutils
inherit eutils
@@ -35,9 +35,6 @@ src_unpack() {
# fixes wrong icons path
sed -i "s:os.path.abspath(os.path.dirname(os.path.realpath(sys.argv\[0\]))):\"${PIXMAPLOC}/\":" btdownloadgui.py
-
- #Fix to get installed
- sed -i 's:"btdownloadlibrary.py",::' setup.py
}
src_install() {
diff --git a/net-p2p/bittornado/files/digest-bittornado-0.1.4 b/net-p2p/bittornado/files/digest-bittornado-0.1.4
deleted file mode 100644
index 1740174ea779..000000000000
--- a/net-p2p/bittornado/files/digest-bittornado-0.1.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c5cb7099921b31a0f0f1ef4747d43ffc BitTornado-0.1.4.tar.gz 161367
diff --git a/net-p2p/bittornado/files/digest-bittornado-0.2.0 b/net-p2p/bittornado/files/digest-bittornado-0.2.0
deleted file mode 100644
index 1d34cdb51da3..000000000000
--- a/net-p2p/bittornado/files/digest-bittornado-0.2.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 14b40c51bd042bff1c89a71707eede3b BitTornado-0.2.0.tar.gz 160275