Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libtheora: libtheora-1.1.1.ebuild ChangeLog
Date: Tue, 27 Oct 2009 11:16:41
Message-Id: E1N2k2Y-0004qc-DV@stork.gentoo.org
1 aballier 09/10/27 11:16:38
2
3 Modified: ChangeLog
4 Added: libtheora-1.1.1.ebuild
5 Log:
6 version bump, by Arne Babenhauserheide <arne_bab@×××.de>, bug #289908
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.98 media-libs/libtheora/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?rev=1.98&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?rev=1.98&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?r1=1.97&r2=1.98
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v
19 retrieving revision 1.97
20 retrieving revision 1.98
21 diff -u -r1.97 -r1.98
22 --- ChangeLog 27 Sep 2009 08:16:18 -0000 1.97
23 +++ ChangeLog 27 Oct 2009 11:16:37 -0000 1.98
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/libtheora
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.97 2009/09/27 08:16:18 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.98 2009/10/27 11:16:37 aballier Exp $
29 +
30 +*libtheora-1.1.1 (27 Oct 2009)
31 +
32 + 27 Oct 2009; Alexis Ballier <aballier@g.o> +libtheora-1.1.1.ebuild:
33 + version bump, by Arne Babenhauserheide <arne_bab@×××.de>, bug #289908
34
35 *libtheora-1.1.0 (27 Sep 2009)
36
37
38
39
40 1.1 media-libs/libtheora/libtheora-1.1.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/libtheora-1.1.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/libtheora-1.1.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libtheora-1.1.1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1.ebuild,v 1.1 2009/10/27 11:16:37 aballier Exp $
50
51 EAPI=2
52 inherit autotools eutils flag-o-matic
53
54 DESCRIPTION="The Theora Video Compression Codec"
55 HOMEPAGE="http://www.theora.org"
56 SRC_URI="http://downloads.xiph.org/releases/theora/${P/_}.tar.bz2"
57
58 LICENSE="BSD"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
61 IUSE="doc +encode examples"
62
63 RDEPEND="media-libs/libogg
64 encode? ( media-libs/libvorbis )
65 examples? ( media-libs/libpng
66 media-libs/libvorbis
67 >=media-libs/libsdl-0.11.0 )"
68 DEPEND="${RDEPEND}
69 doc? ( app-doc/doxygen )
70 dev-util/pkgconfig"
71
72 VARTEXFONTS=${T}/fonts
73 S=${WORKDIR}/${P/_}
74
75 src_prepare() {
76 epatch "${FILESDIR}"/${PN}-1.0_beta2-flags.patch
77 AT_M4DIR="m4" eautoreconf
78 }
79
80 src_configure() {
81 use x86 && filter-flags -fforce-addr -frename-registers #200549
82 use doc || export ac_cv_prog_HAVE_DOXYGEN="false"
83
84 local myconf
85 use examples && myconf="--enable-encode"
86
87 # --disable-spec because LaTeX documentation has been prebuilt
88 econf \
89 --disable-dependency-tracking \
90 --disable-spec \
91 $(use_enable encode) \
92 $(use_enable examples) \
93 ${myconf}
94 }
95
96 src_install() {
97 emake DESTDIR="${D}" docdir=/usr/share/doc/${PF} \
98 install || die "emake install failed"
99
100 dodoc AUTHORS CHANGES README
101 prepalldocs
102
103 if use examples; then
104 if use doc; then
105 insinto /usr/share/doc/${PF}/examples
106 doins examples/*.[ch]
107 fi
108
109 dobin examples/.libs/png2theora || die "dobin failed"
110 for bin in dump_{psnr,video} {encoder,player}_example; do
111 newbin examples/.libs/${bin} theora_${bin} || die "newbin failed"
112 done
113 fi
114 }