blob: 0fe240b647682e21de459145d3f600e2163fc43f (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
KDE_LINGUAS="el es pl sr"
inherit kde4-base
DESCRIPTION="Text-based subtitles editor."
HOMEPAGE="http://www.sourceforge.net/projects/${PN}"
SRC_URI="mirror://sourceforge/subcomposer/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="debug gstreamer xine"
RDEPEND="
gstreamer? ( media-libs/gstreamer )
xine? ( media-libs/xine-lib )
"
DEPEND="${RDEPEND}
sys-devel/gettext
"
PATCHES=( "${FILESDIR}/${P}-phonon-linkage.patch" )
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with gstreamer GStreamer)
$(cmake-utils_use_with xine Xine)
"
kde4-base_src_configure
}
|