blob: 44290da653b9510771fb34b7a0caf5ef85419aa6 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/schroedinger-1.0.3.ebuild,v 1.1 2008/04/22 19:04:04 drac Exp $
DESCRIPTION="C-based libraries and GStreamer plugins for the Dirac video codec"
HOMEPAGE="http://www.diracvideo.org"
SRC_URI="http://www.diracvideo.org/download/${PN}/${P}.tar.gz"
LICENSE="|| ( MPL-1.1 LGPL-2.1 GPL-2 MIT )"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="gstreamer"
RDEPEND=">=dev-libs/liboil-0.3.13
gstreamer? ( >=media-libs/gst-plugins-base-0.10.12 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
econf --disable-dependency-tracking --disable-gtk-doc $(use_enable gstreamer)
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS NEWS TODO
}
|