diff options
author | <luke-jr@gentoo.org> | 2003-10-16 12:18:47 +0000 |
---|---|---|
committer | <luke-jr@gentoo.org> | 2003-10-16 12:18:47 +0000 |
commit | a5bedd40ec462036024af65d1b9ba6b83502f53c (patch) | |
tree | b80d069bb3ae316ffaf710bbd577cf8c441b066f /net-p2p | |
parent | Version bump (diff) | |
download | historical-a5bedd40ec462036024af65d1b9ba6b83502f53c.tar.gz historical-a5bedd40ec462036024af65d1b9ba6b83502f53c.tar.bz2 historical-a5bedd40ec462036024af65d1b9ba6b83502f53c.zip |
Version bump
Diffstat (limited to 'net-p2p')
3 files changed, 80 insertions, 2 deletions
diff --git a/net-p2p/bittorrent-theshadow/Manifest b/net-p2p/bittorrent-theshadow/Manifest index b45c50676929..f3a4ac710b9b 100644 --- a/net-p2p/bittorrent-theshadow/Manifest +++ b/net-p2p/bittorrent-theshadow/Manifest @@ -1,4 +1,4 @@ -MD5 ae0631cd5226d62c5d874f01b623d190 ChangeLog 1945 +MD5 78d8f61fad9cffeb9e349c9419e93cad ChangeLog 2083 MD5 21d431e5d7cd74f9ed00334c9ebbe1db bittorrent-theshadow-5.7.6-r1.ebuild 2230 MD5 db35ce269e6cf311e1417dae29154cb4 bittorrent-theshadow-5.7.6.ebuild 1850 MD5 904bed341f701bb04706bc167dfed521 bittorrent-theshadow-5.7.ebuild 1717 @@ -6,7 +6,7 @@ MD5 342ff0931f3ca523df00f2bb12091fed bittorrent-theshadow-5.8.2.ebuild 2227 MD5 c74a920d49452f3d7bcd21258ac99c35 bittorrent-theshadow-5.8.3.ebuild 2119 MD5 83f2b62b16904e997005968b8e7ea82a metadata.xml 222 MD5 b219627c566f754a01fd450ec8f2376c bittorrent-theshadow-5.8.5.ebuild 2165 -MD5 b219627c566f754a01fd450ec8f2376c bittorrent-theshadow-5.8.6.ebuild 2165 +MD5 a33526877e7cc5be768d76cd2a4e204e bittorrent-theshadow-5.8.6.ebuild 2310 MD5 8b336bc047ea1eb5dbc389a286410deb files/digest-bittorrent-theshadow-5.7 78 MD5 4da0f64e13bc339ef3818a4df2c84fef files/digest-bittorrent-theshadow-5.7.6 80 MD5 4da0f64e13bc339ef3818a4df2c84fef files/digest-bittorrent-theshadow-5.7.6-r1 80 diff --git a/net-p2p/bittorrent-theshadow/bittorrent-theshadow-5.8.6.ebuild b/net-p2p/bittorrent-theshadow/bittorrent-theshadow-5.8.6.ebuild new file mode 100644 index 000000000000..b0e43b9d9f91 --- /dev/null +++ b/net-p2p/bittorrent-theshadow/bittorrent-theshadow-5.8.6.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc., Okrain Genady (^Mafteah), and Luke-Jr +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent-theshadow/bittorrent-theshadow-5.8.6.ebuild,v 1.1 2003/10/16 12:18:44 luke-jr Exp $ + +inherit distutils + +S=${WORKDIR}/bittorrent-CVS-shadowsclient +DESCRIPTION="BitTorrent is a tool for distributing files via a distributed network of nodes" +SRC_URI="http://home.elp.rr.com/tur/BitTorrent-experimental-S-${PV}.tar.gz" +HOMEPAGE="http://bt.degreez.net/" +SLOT="0" +LICENSE="MIT" +KEYWORDS="~x86 ~ppc ~alpha ~sparc" + +IUSE="X psyco nopsyco" + +RDEPEND="X? ( >=dev-python/wxPython-2.2 ) + >=dev-lang/python-2.1 + !net-p2p/bittorrent + !virtual/bittorrent + psyco? ( dev-python/psyco )" +DEPEND="${RDEPEND} + >=sys-apps/sed-4.0.5" + +PROVIDE="virtual/bittorrent" + +mydoc="FAQ.txt README.txt LICENSE.txt" + + +src_unpack() { + unpack ${A} + cd ${S} + for f in `find -name \*.txt -or -name \*.py`; do + sed 's/basepath=os\.path\.abspath(os\.path\.dirname(sys\.argv\[0\]))/basepath="\/usr\/share\/pixmaps\/bittorrent"/' < "$f"| + sed "s/'lock_files', 1/'lock_files', 0/" \ + > "$f".new + mv "$f".new "$f" + done + if ! use nopsyco; then + sed 's/psyco = 0/psyco = 1/' < BitTorrent/PSYCO.py > BitTorrent/PSYCO.py.new + mv BitTorrent/PSYCO.py.new BitTorrent/PSYCO.py + fi + sed "s/'PSYCO.py',//" < setup.py > setup.py.new + mv setup.py.new setup.py +} + +src_install() { + distutils_src_install + if ! use X; then + rm ${D}/usr/bin/*gui.py + fi + dodir etc + cp -a /etc/mailcap ${D}/etc/ + + dodir /usr/share/pixmaps/bittorrent + for f in *.{ico,gif}; do + install -m 644 "$f" "${D}/usr/share/pixmaps/bittorrent/$f" + done + + MAILCAP_STRING="application/x-bittorrent; /usr/bin/btdownloadgui.py '%s'; test=test -n \"\$DISPLAY\"" + + if use X; then + 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 + fi +} + diff --git a/net-p2p/bittorrent-theshadow/files/digest-bittorrent-theshadow-5.8.6 b/net-p2p/bittorrent-theshadow/files/digest-bittorrent-theshadow-5.8.6 new file mode 100644 index 000000000000..4b907334defd --- /dev/null +++ b/net-p2p/bittorrent-theshadow/files/digest-bittorrent-theshadow-5.8.6 @@ -0,0 +1 @@ +MD5 5add2314338225e01ff6c91e3ac41ec2 BitTorrent-experimental-S-5.8.6.tar.gz 144326 |