blob: d717e91391d36c57045c709be319f912564f4796 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/schroedinger-1.0.7.ebuild,v 1.5 2009/09/22 07:44:36 maekke Exp $
inherit libtool
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="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
IUSE="gstreamer"
RDEPEND=">=dev-libs/liboil-0.3.16
gstreamer? ( <media-libs/gstreamer-0.10.24
<media-libs/gst-plugins-base-0.10.24 )"
# Doesn't seem to build as of 1.0.5
# opengl? ( virtual/opengl )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
elibtoolize # dont drop, sane .so versionning on bsd
}
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
}
|