blob: e995cf9e8961fca41303dee3625e68e4edd97209 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1.ebuild,v 1.1 2009/10/27 11:16:37 aballier Exp $
EAPI=2
inherit autotools eutils flag-o-matic subversion
DESCRIPTION="The Theora Video Compression Codec"
HOMEPAGE="http://www.theora.org"
SRC_URI=""
ESVN_REPO_URI="http://svn.xiph.org/trunk/theora"
ESVN_STORE_DIR="${DISTDIR}/svn-src"
ESVN_PROJECT="${PN/-svn}"
ESVN_BOOTSTRAP="./autogen.sh"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc +encode examples"
RDEPEND="media-libs/libogg
encode? ( media-libs/libvorbis )
examples? ( media-libs/libpng
media-libs/libvorbis
>=media-libs/libsdl-0.11.0 )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
dev-util/pkgconfig"
VARTEXFONTS=${T}/fonts
S=${WORKDIR}/${P/_}
src_unpack() {
subversion_src_unpack
}
src_prepare() {
eautoreconf
epatch "${FILESDIR}"/${PN}-1.0_beta2-flags.patch
AT_M4DIR="m4" eautoreconf
}
src_configure() {
use x86 && filter-flags -fforce-addr -frename-registers #200549
use doc || export ac_cv_prog_HAVE_DOXYGEN="false"
local myconf
use examples && myconf="--enable-encode"
# --disable-spec because LaTeX documentation has been prebuilt
econf \
--disable-dependency-tracking \
--disable-spec \
$(use_enable encode) \
$(use_enable examples) \
${myconf}
}
src_install() {
emake DESTDIR="${D}" docdir=/usr/share/doc/${PF} \
install || die "emake install failed"
dodoc AUTHORS CHANGES README
prepalldocs
if use examples; then
if use doc; then
insinto /usr/share/doc/${PF}/examples
doins examples/*.[ch]
fi
dobin examples/.libs/png2theora || die "dobin failed"
for bin in dump_{psnr,video} {encoder,player}_example; do
newbin examples/.libs/${bin} theora_${bin} || die "newbin failed"
done
fi
}
|