blob: 8d4ab5c24e72412180bf91221bb23d8e9f01b5ac (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/subtitlecomposer/subtitlecomposer-0.4.1.ebuild,v 1.1 2008/06/14 00:28:42 yngwin Exp $
ARTS_REQUIRED="never"
inherit kde
DESCRIPTION="Text-based subtitles editor"
HOMEPAGE="http://www.opendesktop.org/content/show.php/Subtitle+Composer?content=69822"
SRC_URI="mirror://sourceforge/subcomposer/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gstreamer mplayer xine"
DEPEND="|| ( kde-base/kate kde-base/kdebase )
gstreamer? ( media-libs/gstreamer )
mplayer? ( media-video/mplayer )
xine? ( media-libs/xine-lib )"
RDEPEND="${DEPEND}"
need-kde 3.5
src_compile() {
local myconf="$(use_with gstreamer) $(use_with xine)"
kde_src_compile
}
|