blob: fcbd4c189d559e06d336ffcc320a6e6632849457 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/smplayer2/smplayer2-9999.ebuild,v 1.2 2012/06/17 05:48:42 yngwin Exp $
EAPI="4"
LANGS="bg ca cs da de en_US es et eu fi fr gl hu it ja ka ko ku lt mk nl pl pt pt_BR sk sr sv tr zh_CN zh_TW"
LANGSLONG="ar_SY el_GR ro_RO ru_RU sl_SI uk_UA vi_VN"
inherit cmake-utils git-2
DESCRIPTION="Qt4 GUI front-end for mplayer2"
HOMEPAGE="https://github.com/lachs0r/SMPlayer2"
EGIT_REPO_URI="git://github.com/lachs0r/SMPlayer2.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="debug +download-subs"
for x in ${LANGS}; do
IUSE="${IUSE} linguas_${x}"
done
for x in ${LANGSLONG}; do
IUSE="${IUSE} linguas_${x%_*}"
done
DEPEND="
x11-libs/qt-gui:4
download-subs? ( dev-libs/quazip )
"
RDEPEND="${DEPEND}
media-video/mplayer2[libass,png]
"
src_configure() {
# linguas
local langs x
for x in ${LANGS}; do
use linguas_${x} && langs+=" ${x}"
done
for x in ${LANGSLONG}; do
use linguas_${x%_*} && langs+=" ${x}"
done
local mycmakeargs=(
-DLINGUAS="${langs}"
"$(cmake-utils_use debug DEBUG_OUTPUT)"
"$(cmake-utils_use download-subs ENABLE_DOWNLOAD_SUBS)"
)
cmake-utils_src_configure
}
|