blob: 1715481859a95fb8bb6dad8fcf4ab031de8eee98 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
TRANSMISSION_PATCHES=(
# Fix for broken translations path
"${FILESDIR}"/${PN}-2.80-translations-path-fix.patch
)
inherit eutils transmission-2.83
DESCRIPTION="A Fast, Easy and Free BitTorrent client - Qt4 UI"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-qt/qtcore:4=
dev-qt/qtgui:4=
dev-qt/qtdbus:4=
"
DEPEND="${RDEPEND}"
src_install() {
pushd qt >/dev/null
dodoc README.txt
dobin transmission-qt
doman transmission-qt.1
domenu ${MY_PN}-qt.desktop || die
local res
for res in 16 22 24 32 48 64 72 96 128 192 256; do
doicon -s ${res} icons/hicolor/${res}x${res}/${MY_PN}-qt.png
done
doicon -s scalable icons/hicolor/scalable/${MY_PN}-qt.svg
insinto /usr/share/qt4/translations
doins translations/*.qm
popd >/dev/null
}
|