| 1 |
ago |
1.2 |
# Copyright 1999-2013 Gentoo Foundation
|
| 2 |
blueness |
1.1 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
vapier |
1.5 |
# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-6.0.3.ebuild,v 1.4 2013/02/18 19:01:32 blueness Exp $
|
| 4 |
blueness |
1.1 |
|
| 5 |
|
|
EAPI="4"
|
| 6 |
|
|
PYTHON_DEPEND="2"
|
| 7 |
|
|
PYTHON_USE_WITH="sqlite"
|
| 8 |
|
|
|
| 9 |
vapier |
1.5 |
inherit eutils python unpacker
|
| 10 |
blueness |
1.1 |
|
| 11 |
|
|
MY_PV="${PN}_${PV}_all"
|
| 12 |
|
|
|
| 13 |
|
|
DESCRIPTION="Bittorrent client that does not require a website to discover content"
|
| 14 |
|
|
HOMEPAGE="http://www.tribler.org/"
|
| 15 |
|
|
SRC_URI="
|
| 16 |
|
|
http://dl.tribler.org/${MY_PV}.deb
|
| 17 |
|
|
x86? ( http://dl.tribler.org/tribler-swift_6.0.0-28795_i386.deb )
|
| 18 |
|
|
amd64? ( http://dl.tribler.org/tribler-swift_6.0.0-28795_amd64.deb )"
|
| 19 |
|
|
|
| 20 |
|
|
LICENSE="LGPL-2.1"
|
| 21 |
|
|
SLOT="0"
|
| 22 |
ago |
1.3 |
KEYWORDS="amd64 x86"
|
| 23 |
blueness |
1.1 |
IUSE="vlc"
|
| 24 |
|
|
|
| 25 |
|
|
RDEPEND="
|
| 26 |
|
|
dev-python/apsw
|
| 27 |
|
|
dev-python/m2crypto
|
| 28 |
|
|
dev-python/netifaces
|
| 29 |
|
|
dev-libs/openssl
|
| 30 |
|
|
dev-python/wxpython
|
| 31 |
|
|
vlc? (
|
| 32 |
|
|
media-video/vlc
|
| 33 |
|
|
media-video/ffmpeg
|
| 34 |
|
|
)"
|
| 35 |
|
|
|
| 36 |
|
|
DEPEND="${RDEPEND}
|
| 37 |
|
|
app-arch/unzip"
|
| 38 |
|
|
|
| 39 |
|
|
S="${WORKDIR}"
|
| 40 |
|
|
|
| 41 |
|
|
QA_PREBUILT="/usr/share/tribler/swift"
|
| 42 |
|
|
|
| 43 |
|
|
pkg_setup() {
|
| 44 |
|
|
python_set_active_version 2
|
| 45 |
|
|
python_pkg_setup
|
| 46 |
|
|
}
|
| 47 |
|
|
|
| 48 |
|
|
src_prepare() {
|
| 49 |
|
|
epatch "${FILESDIR}/${PN}-5.9.12-fix-global-declarations.patch"
|
| 50 |
|
|
epatch "${FILESDIR}/${PN}-log2homedir.patch"
|
| 51 |
blueness |
1.4 |
epatch "${FILESDIR}/${PN}-fix-desktop.patch"
|
| 52 |
blueness |
1.1 |
|
| 53 |
|
|
python_convert_shebangs -r 2 .
|
| 54 |
|
|
}
|
| 55 |
|
|
|
| 56 |
|
|
src_compile() { :; }
|
| 57 |
|
|
|
| 58 |
|
|
src_install() {
|
| 59 |
|
|
#Rename the doc dir properly
|
| 60 |
|
|
mv usr/share/doc/${PN} usr/share/doc/${P}
|
| 61 |
|
|
|
| 62 |
|
|
#Move the readme to the doc dir
|
| 63 |
|
|
mv usr/share/${PN}/Tribler/readme.txt usr/share/doc/${P}
|
| 64 |
|
|
|
| 65 |
|
|
#Remove the licenses scattered throughout
|
| 66 |
|
|
rm usr/share/doc/${P}/copyright
|
| 67 |
|
|
rm usr/share/${PN}/Tribler/*.txt
|
| 68 |
|
|
rm usr/share/${PN}/Tribler/Core/DecentralizedTracking/pymdht/{LGPL-2.1.txt,LICENSE.txt}
|
| 69 |
|
|
|
| 70 |
|
|
#Copy the rest over
|
| 71 |
|
|
cp -pPR usr/ "${ED}"/
|
| 72 |
|
|
}
|
| 73 |
|
|
|
| 74 |
|
|
pkg_postinst() {
|
| 75 |
|
|
python_mod_optimize "${ROOT}"usr/share/${PN}
|
| 76 |
|
|
}
|
| 77 |
|
|
|
| 78 |
|
|
pkg_postrm() {
|
| 79 |
|
|
python_mod_cleanup "${ROOT}"usr/share/${PN}
|
| 80 |
|
|
}
|