diff options
author | <luke-jr@gentoo.org> | 2003-10-11 05:34:19 +0000 |
---|---|---|
committer | <luke-jr@gentoo.org> | 2003-10-11 05:34:19 +0000 |
commit | a3bdf587f1b6230f16b48f1de9667d7dd8ad43b6 (patch) | |
tree | ef334eb4558ebddc0110ec0543ce482a6087eb25 /net-p2p | |
parent | Version bump (diff) | |
download | historical-a3bdf587f1b6230f16b48f1de9667d7dd8ad43b6.tar.gz historical-a3bdf587f1b6230f16b48f1de9667d7dd8ad43b6.tar.bz2 historical-a3bdf587f1b6230f16b48f1de9667d7dd8ad43b6.zip |
Version bump
Diffstat (limited to 'net-p2p')
3 files changed, 76 insertions, 2 deletions
diff --git a/net-p2p/bittorrent-theshadow/Manifest b/net-p2p/bittorrent-theshadow/Manifest index 17527ff3dff0..8215523dfe53 100644 --- a/net-p2p/bittorrent-theshadow/Manifest +++ b/net-p2p/bittorrent-theshadow/Manifest @@ -1,11 +1,11 @@ -MD5 bba741c39adb3582edd10616a4a8c286 ChangeLog 1807 +MD5 ae0631cd5226d62c5d874f01b623d190 ChangeLog 1945 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 MD5 342ff0931f3ca523df00f2bb12091fed bittorrent-theshadow-5.8.2.ebuild 2227 MD5 c74a920d49452f3d7bcd21258ac99c35 bittorrent-theshadow-5.8.3.ebuild 2119 MD5 83f2b62b16904e997005968b8e7ea82a metadata.xml 222 -MD5 c74a920d49452f3d7bcd21258ac99c35 bittorrent-theshadow-5.8.5.ebuild 2119 +MD5 b219627c566f754a01fd450ec8f2376c bittorrent-theshadow-5.8.5.ebuild 2165 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.5.ebuild b/net-p2p/bittorrent-theshadow/bittorrent-theshadow-5.8.5.ebuild new file mode 100644 index 000000000000..4e6a41d1f703 --- /dev/null +++ b/net-p2p/bittorrent-theshadow/bittorrent-theshadow-5.8.5.ebuild @@ -0,0 +1,73 @@ +# 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.5.ebuild,v 1.1 2003/10/11 05:34:16 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/PSYCO.psyco/$((`use nopsyco&&echo -1`+1))/g" < "$f" | + grep -v 'import PSYCO' | + sed 's/basepath=os\.path\.abspath(os\.path\.dirname(sys\.argv\[0\]))/basepath="\/usr\/share\/pixmaps\/bittorrent"/' | + sed "s/'lock_files', 1/'lock_files', 0/" \ + > "$f".new + mv "$f".new "$f" + done +} + +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.5 b/net-p2p/bittorrent-theshadow/files/digest-bittorrent-theshadow-5.8.5 new file mode 100644 index 000000000000..1a378fd63e49 --- /dev/null +++ b/net-p2p/bittorrent-theshadow/files/digest-bittorrent-theshadow-5.8.5 @@ -0,0 +1 @@ +MD5 d7988916576cb2194e3cfb1027777cd5 BitTorrent-experimental-S-5.8.5.tar.gz 143888 |