blob: 243a21f1b8afb90115204534350cf19364097ba5 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit qmake-utils git-r3 xdg-utils
DESCRIPTION="Cross-platform libmpv-based multimedia player with uncluttered design"
HOMEPAGE="http://bakamplayer.u8sand.net/"
EGIT_REPO_URI="https://github.com/u8sand/Baka-MPlayer.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
BDEPEND="
dev-qt/linguist-tools:5
virtual/pkgconfig
"
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
media-video/mpv[libmpv]
x11-libs/libX11
"
DEPEND="${RDEPEND}"
S="${WORKDIR}/baka-mplayer-${PV}"
src_prepare() {
default
# don't install license, man.gz, install the latter manually
sed -e "/^INSTALLS/s/\sman\slicense//" -i src/Baka-MPlayer.pro || die
gunzip DOCS/baka-mplayer.1.gz || die
}
src_configure() {
eqmake5 \
INSTROOT="${D}" \
CONFIG+=install_translations \
lrelease="$(qt5_get_bindir)"/lrelease \
lupdate="$(qt5_get_bindir)"/lupdate \
src/Baka-MPlayer.pro
}
src_install() {
default
doman DOCS/baka-mplayer.1
}
pkg_postinst() {
xdg_icon_cache_update
}
pkg_postrm() {
xdg_icon_cache_update
}
|