blob: a35c795fe710f295cda610d6bf470dd6dba99281 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PLOCALES="am ar ar_SY bg ca cs da de el_GR en_GB en_US es et eu fa fi fr gl
he_IL hr hu id it ja ka ko ku lt mk ms_MY nl nn_NO pl pt pt_BR ro_RO ru_RU
sk sl_SI sq_AL sr sv th tr uk_UA uz vi_VN zh_CN zh_TW"
PLOCALE_BACKUP="en_US"
inherit l10n qmake-utils
DESCRIPTION="Great Qt GUI front-end for mplayer/mpv"
HOMEPAGE="http://www.smplayer.eu/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2+ BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux"
IUSE="autoshutdown bidi debug mpris qt5 streaming"
COMMON_DEPEND="
sys-libs/zlib
!qt5? (
dev-qt/qtcore:4
dev-qt/qtgui:4
dev-qt/qtsingleapplication[X,qt4]
autoshutdown? ( dev-qt/qtdbus:4 )
mpris? ( dev-qt/qtdbus:4 )
streaming? (
dev-qt/qtcore:4[ssl]
dev-qt/qtscript:4
)
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtsingleapplication[X,qt5]
dev-qt/qtwidgets:5
dev-qt/qtxml:5
autoshutdown? ( dev-qt/qtdbus:5 )
mpris? ( dev-qt/qtdbus:5 )
streaming? (
dev-qt/qtnetwork:5[ssl]
dev-qt/qtscript:5
)
)
"
DEPEND="${COMMON_DEPEND}
qt5? ( dev-qt/linguist-tools:5 )
"
RDEPEND="${COMMON_DEPEND}
|| (
media-video/mplayer[bidi?,libass,png,X]
(
>=media-video/mpv-0.10.0[libass,X]
streaming? ( >=net-misc/youtube-dl-2014.11.26 )
)
)
"
PATCHES=(
"${FILESDIR}/${PN}-14.9.0.6966-unbundle-qtsingleapplication.patch" # bug 487544
)
src_prepare() {
default
use bidi || eapply "${FILESDIR}"/${PN}-16.4.0-zero-bidi.patch
# Upstream Makefile sucks
sed -i -e "/^PREFIX=/ s:/usr/local:${EPREFIX}/usr:" \
-e "/^DOC_PATH=/ s:packages/smplayer:${PF}:" \
-e '/\.\/get_svn_revision\.sh/,+2c\
cd src && $(DEFS) $(MAKE)' \
Makefile || die
# Turn off online update checker, bug #479902
sed -e 's:DEFINES += UPDATE_CHECKER:#&:' \
-e 's:DEFINES += CHECK_UPGRADED:#&:' \
-i src/smplayer.pro || die
# Turn off intrusive share widget
sed -e 's:DEFINES += SHARE_WIDGET:#&:' \
-i src/smplayer.pro || die
# Toggle autoshutdown option which pulls in dbus, bug #524392
if ! use autoshutdown ; then
sed -e 's:DEFINES += AUTO_SHUTDOWN_PC:#&:' \
-i src/smplayer.pro || die
fi
# Turn debug message flooding off
if ! use debug ; then
sed -e 's:#\(DEFINES += NO_DEBUG_ON_CONSOLE\):\1:' \
-i src/smplayer.pro || die
fi
# MPRIS2 pulls in dbus, bug #553710
if ! use mpris ; then
sed -e 's:DEFINES += MPRIS2:#&:' \
-i src/smplayer.pro || die
fi
# Turn off youtube support (which pulls in extra dependencies) if unwanted
if ! use streaming ; then
sed -e 's:DEFINES += YOUTUBE_SUPPORT:#&:' \
-i src/smplayer.pro || die
sed -e 's:^#define PLAYLIST_DOWNLOAD://&:' \
-i src/playlist.h || die
fi
# Commented out because it gives false positives
#l10n_find_plocales_changes "${S}"/src/translations ${PN}_ .ts
}
src_configure() {
cd src || die
use qt5 && eqmake5 || eqmake4
}
gen_translation() {
local mydir="$(qt4_get_bindir)"
if use qt5; then
mydir="$(qt5_get_bindir)"
fi
ebegin "Generating $1 translation"
"${mydir}"/lrelease ${PN}_${1}.ts
eend $? || die "failed to generate $1 translation"
}
src_compile() {
default
cd src/translations || die
l10n_for_each_locale_do gen_translation
}
src_install() {
# remove unneeded copies of the GPL
rm -f Copying* docs/*/gpl.html || die
# don't install empty dirs
rmdir --ignore-fail-on-non-empty docs/* || die
default
}
|