blob: 6a54e4e0b5c61f0a1a9b1402f24728e9feca6ba5 (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
KDE_LINGUAS="bg cs de el es fr pl pt_BR sr"
inherit kde4-base
DESCRIPTION="Text-based subtitles editor."
HOMEPAGE="http://www.sourceforge.net/projects/subcomposer/"
ESVN_REPO_URI="https://subcomposer.svn.sourceforge.net/svnroot/subcomposer/trunk"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="4"
IUSE="debug gstreamer xine"
RDEPEND="
gstreamer? ( media-libs/gstreamer )
xine? ( media-libs/xine-lib )
"
DEPEND="${RDEPEND}
sys-devel/gettext
"
src_prepare() {
kde4-base_src_prepare
sed -e '/ADD_SUBDIRECTORY( api )/s/^/# DISABLED/' \
-i src/main/scripting/examples/CMakeLists.txt \
|| die "failed to disable installation of scripting API"
}
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with gstreamer GStreamer)
$(cmake-utils_use_with xine)
"
kde4-base_src_configure
}
pkg_postinst() {
kde4-base_pkg_postinst
echo
elog "Some example scripts provided by ${PV} require dev-lang/ruby"
elog "or dev-lang/python to be installed."
echo
}
|