summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Jackson <tsunam@gentoo.org>2006-10-19 05:36:10 +0000
committerJoshua Jackson <tsunam@gentoo.org>2006-10-19 05:36:10 +0000
commit3eabf340dfd423d6893275ae285a53ef975cc9be (patch)
tree4e0eb60a19198f4d74c635c7d07b083915bf428e /net-p2p/rufus/rufus-0.7.0.ebuild
parentAdd patches to allow KNotify to work with arts disabled (see upstream bug #99... (diff)
downloadgentoo-2-3eabf340dfd423d6893275ae285a53ef975cc9be.tar.gz
gentoo-2-3eabf340dfd423d6893275ae285a53ef975cc9be.tar.bz2
gentoo-2-3eabf340dfd423d6893275ae285a53ef975cc9be.zip
Removing rufus as I said I would a month ago, its dead as dead can be
Diffstat (limited to 'net-p2p/rufus/rufus-0.7.0.ebuild')
-rw-r--r--net-p2p/rufus/rufus-0.7.0.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/net-p2p/rufus/rufus-0.7.0.ebuild b/net-p2p/rufus/rufus-0.7.0.ebuild
deleted file mode 100644
index e7c49f6b2efc..000000000000
--- a/net-p2p/rufus/rufus-0.7.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rufus/rufus-0.7.0.ebuild,v 1.5 2006/04/20 04:24:50 tsunam Exp $
-
-inherit distutils
-
-MY_PN=${PN/r/R}
-
-DESCRIPTION="A bittorrent client based off g3torrent"
-HOMEPAGE="http://rufus.sourceforge.net/"
-SRC_URI="http://www.tsunam.org/files/overlay/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="${RDEPEND}
- app-arch/unzip"
-RDEPEND=">=dev-lang/python-2.4.0
- >=dev-python/wxpython-2.6.1.0
- =dev-python/pyopenssl-0.6
- dev-libs/openssl
- !virtual/bittorrent"
-
-PROVIDE="virtual/bittorrent"
-
-PIXMAPLOC="/usr/share/rufus"
-S="${WORKDIR}/${P/-/_}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-gentoo.patch
-}
-
-src_install() {
- distutils_src_install
- dodir ${PIXMAPLOC}
- insinto ${PIXMAPLOC}
- doins rufus.py
-
- dodir ${PIXMAPLOC}/images
- insinto ${PIXMAPLOC}/images
- doins images/*.png images/*.bmp
-
- insinto /usr/share/pixmaps
- doins images/rufus.png
-
- dodir ${PIXMAPLOC}/images/flags
- insinto ${PIXMAPLOC}/images/flags
- doins images/flags/*
-
- dobin rufus
-
- dodoc TODO.TXT CHANGELOG.TXT
-
-}