diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-05-10 01:32:31 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-05-10 01:32:31 +0000 |
commit | d4a472e2c6999796b6d616309a2359c02cd15f14 (patch) | |
tree | bf23e9f073b91cfc3499992f8efbf6d1e9884e96 /net-p2p/tribler/tribler-6.1.0.ebuild | |
parent | Pass host toolchain via the environment to gyp. (diff) | |
download | gentoo-2-d4a472e2c6999796b6d616309a2359c02cd15f14.tar.gz gentoo-2-d4a472e2c6999796b6d616309a2359c02cd15f14.tar.bz2 gentoo-2-d4a472e2c6999796b6d616309a2359c02cd15f14.zip |
Version bump, bug #469168
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'net-p2p/tribler/tribler-6.1.0.ebuild')
-rw-r--r-- | net-p2p/tribler/tribler-6.1.0.ebuild | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/net-p2p/tribler/tribler-6.1.0.ebuild b/net-p2p/tribler/tribler-6.1.0.ebuild new file mode 100644 index 000000000000..d545d6d807c1 --- /dev/null +++ b/net-p2p/tribler/tribler-6.1.0.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-6.1.0.ebuild,v 1.1 2013/05/10 01:32:31 blueness Exp $ + +EAPI="5" +PYTHON_DEPEND="2" +PYTHON_USE_WITH="sqlite" + +inherit eutils python unpacker + +DESCRIPTION="Bittorrent client that does not require a website to discover content" +HOMEPAGE="http://www.tribler.org/" +SRC_URI=" + http://dl.tribler.org/tribler_6.1ubuntu1_all.deb + x86? ( http://dl.tribler.org/tribler-swift_6.1ubuntu1_i386.deb ) + amd64? ( http://dl.tribler.org/tribler-swift_6.1ubuntu1_amd64.deb )" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="vlc" + +RDEPEND=" + dev-python/apsw + dev-python/feedparser + dev-python/m2crypto + dev-python/netifaces + dev-libs/openssl + dev-python/wxpython + net-libs/rb_libtorrent + vlc? ( + media-video/vlc + media-video/ffmpeg + )" + +DEPEND="${RDEPEND} + app-arch/unzip" + +S="${WORKDIR}" + +QA_PREBUILT="/usr/lib/tribler/swift" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + epatch "${FILESDIR}/${PN}-5.9.12-fix-global-declarations.patch" + epatch "${FILESDIR}/${PN}-log2homedir.patch" + epatch "${FILESDIR}/${P}-fix-desktop.patch" + + python_convert_shebangs -r 2 . +} + +src_compile() { :; } + +src_install() { + #Rename the doc dir properly + mv usr/share/doc/${PN} usr/share/doc/${P} + + #Move the readme to the doc dir + mv usr/share/${PN}/Tribler/readme.txt usr/share/doc/${P} + + #Remove the licenses scattered throughout + rm usr/share/doc/${P}/copyright + rm usr/share/${PN}/Tribler/*.txt + rm usr/share/${PN}/Tribler/Core/DecentralizedTracking/pymdht/LGPL-2.1.txt + + #Copy the rest over + cp -pPR usr/ "${ED}"/ +} + +pkg_postinst() { + python_mod_optimize "${ROOT}"usr/share/${PN} +} + +pkg_postrm() { + python_mod_cleanup "${ROOT}"usr/share/${PN} +} |