You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-video/smplayer2/smplayer2-0.7.3_p20120524.e...

57 lines
1.4 KiB

# 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-0.7.3_p20120524.ebuild,v 1.4 2012/11/07 03:21:00 jer 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 base cmake-utils
DESCRIPTION="Qt4 GUI front-end for mplayer2"
HOMEPAGE="https://github.com/lachs0r/SMPlayer2"
SRC_URI="http://rion-overlay.googlecode.com/files/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~x86"
IUSE="dbus 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[dbus?]
download-subs? ( dev-libs/quazip )
"
RDEPEND="${DEPEND}
media-video/mplayer2[libass,png]
"
src_prepare() {
sed -i -e '/Categories/s/KDE/KDE;/' "${PN}".desktop || die 'sed on desktop file failed'
base_src_prepare
}
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 dbus ENABLE_DBUS)"
"$(cmake-utils_use debug DEBUG_OUTPUT)"
"$(cmake-utils_use download-subs ENABLE_DOWNLOAD_SUBS)"
)
cmake-utils_src_configure
}