diff options
author | 2006-12-29 16:45:50 +0000 | |
---|---|---|
committer | 2006-12-29 16:45:50 +0000 | |
commit | 68832ed2c8564baaa78d021caafd7c950935c449 (patch) | |
tree | 0419ec7ff782a2eb3a910b4dd2d769a323cda166 /net-p2p/deluge/deluge-0.4.1.ebuild | |
parent | media-sound/exaile: Version bump (diff) | |
download | sunrise-68832ed2c8564baaa78d021caafd7c950935c449.tar.gz sunrise-68832ed2c8564baaa78d021caafd7c950935c449.tar.bz2 sunrise-68832ed2c8564baaa78d021caafd7c950935c449.zip |
net-p2p/deluge: Version bump && old
svn path=/sunrise/; revision=2532
Diffstat (limited to 'net-p2p/deluge/deluge-0.4.1.ebuild')
-rw-r--r-- | net-p2p/deluge/deluge-0.4.1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/net-p2p/deluge/deluge-0.4.1.ebuild b/net-p2p/deluge/deluge-0.4.1.ebuild new file mode 100644 index 000000000..fe1e39568 --- /dev/null +++ b/net-p2p/deluge/deluge-0.4.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils python multilib + +DESCRIPTION="BitTorrent client in Python and PyGTK." +HOMEPAGE="http://deluge-torrent.org/" +SRC_URI="http://deluge.mynimalistic.net/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-lang/python-2.3 + dev-libs/boost + >=dev-python/pygtk-2 + =dev-python/python-libtorrent-0.4.0 + dev-python/pyxdg" +RDEPEND="${DEPEND}" + +src_install() { + python_version + insinto "/usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" + doins -r *.py glade/ pixmaps/ plugins/ + + newicon pixmaps/${PN}-32.png ${PN}.png + make_wrapper ${PN} "/usr/bin/python /usr/$(get_libdir)/python${PYVER}/site-packages/${PN}/${PN}.py" + make_desktop_entry ${PN} ${PN} + + dodoc README +} +pkg_postinst() { + python_version + python_mod_optimize "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" +} + +pkg_postrm() { + python_version + python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" +} |