blob: dd9d510cf21ece655bbb2d170c80d4749eb979c0 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.0_alpha6-r1.ebuild,v 1.15 2008/04/17 11:27:38 drac Exp $
WANT_AUTOMAKE=1.9
WANT_AUTOCONF=2.5
inherit flag-o-matic libtool autotools
DESCRIPTION="The Theora Video Compression Codec"
HOMEPAGE="http://www.theora.org/"
SRC_URI="http://downloads.xiph.org/releases/theora/${P/_}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="arm sh"
IUSE="encode doc examples"
RDEPEND=">=media-libs/libogg-1.1.0
encode? ( >=media-libs/libvorbis-1.0.1 )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
S=${WORKDIR}/${P/_}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e 's:SUBDIRS = .*:SUBDIRS = lib include doc:' Makefile.am
epatch "${FILESDIR}/${P/_/}-buildfixes.patch"
epatch "${FILESDIR}/${P}-pic-fix.patch"
# Force automake 1.9 for newer autoconf
WANT_AUTOMAKE="1.9" \
AT_M4DIR="m4" eautoreconf
elibtoolize
if use examples; then
# This creates a clean copy of examples sources
cp -R "${S}/examples" "${WORKDIR}"
rm -f "${WORKDIR}/examples/Makefile"*
fi
}
src_compile() {
# bug #75403, -O3 needs to be filtered to -O2
replace-flags -O3 -O2
use doc || export ac_cv_prog_HAVE_DOXYGEN="false"
econf \
$(use_enable encode) \
--enable-shared \
--disable-dependency-tracking \
|| die "configure failed"
emake || die "make failed"
}
src_install() {
emake \
DESTDIR="${D}" \
docdir="usr/share/doc/${PF}" \
install || die "make install failed"
if use examples; then
insinto "/usr/share/doc/${PF}/examples"
doins "${WORKDIR}/examples/"*
fi
dodoc README
}
|