21 lines
560 B
Bash
21 lines
560 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dts/gst-plugins-dts-1.2.3.ebuild,v 1.4 2014/03/28 02:45:04 jer Exp $
|
|
|
|
EAPI="5"
|
|
|
|
inherit gst-plugins-bad gst-plugins10
|
|
|
|
DESCRIPTION="GStreamer plugin for MPEG-1/2 video encoding"
|
|
KEYWORDS="amd64 hppa ~ppc ~ppc64 x86 ~amd64-fbsd"
|
|
IUSE="+orc"
|
|
|
|
RDEPEND="
|
|
media-libs/libdca
|
|
orc? ( >=dev-lang/orc-0.4.16 )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_configure() {
|
|
gst-plugins10_src_configure $(use_enable orc)
|
|
}
|