blob: c053b0b996db7dad538f7a194386059c5ccfa665 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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.7.ebuild,v 1.3 2003/11/26 11:13:09 aliz 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 ~amd64"
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
}
|