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: ChangeLog libtheora-1.0.ebuild
Date: Thu, 06 Nov 2008 18:22:22
Message-Id: E1Ky9Up-0006VE-QN@stork.gentoo.org
1 aballier 08/11/06 18:22:19
2
3 Modified: ChangeLog
4 Added: libtheora-1.0.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc13/cvs/Linux 2.6.27.4 x86_64)
8
9 Revision Changes Path
10 1.82 media-libs/libtheora/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?rev=1.82&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?rev=1.82&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?r1=1.81&r2=1.82
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v
19 retrieving revision 1.81
20 retrieving revision 1.82
21 diff -u -r1.81 -r1.82
22 --- ChangeLog 3 Nov 2008 11:07:56 -0000 1.81
23 +++ ChangeLog 6 Nov 2008 18:22:19 -0000 1.82
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/libtheora
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.81 2008/11/03 11:07:56 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.82 2008/11/06 18:22:19 aballier Exp $
29 +
30 +*libtheora-1.0 (06 Nov 2008)
31 +
32 + 06 Nov 2008; Alexis Ballier <aballier@g.o> +libtheora-1.0.ebuild:
33 + version bump
34
35 03 Nov 2008; Raúl Porcel <armin76@g.o>
36 libtheora-1.0_beta3-r1.ebuild:
37
38
39
40 1.1 media-libs/libtheora/libtheora-1.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/libtheora-1.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/libtheora-1.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libtheora-1.0.ebuild
46 ===================================================================
47 # Copyright 1999-2008 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.0.ebuild,v 1.1 2008/11/06 18:22:19 aballier Exp $
50
51 inherit autotools eutils toolchain-funcs flag-o-matic
52
53 DESCRIPTION="The Theora Video Compression Codec"
54 HOMEPAGE="http://www.theora.org"
55 SRC_URI="http://downloads.xiph.org/releases/theora/${P/_}.tar.bz2"
56
57 LICENSE="BSD"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
60 IUSE="doc encode examples"
61
62 RDEPEND="media-libs/libogg
63 encode? ( media-libs/libvorbis )"
64 DEPEND="${RDEPEND}
65 doc? ( app-doc/doxygen )
66 dev-util/pkgconfig"
67
68 S=${WORKDIR}/${P/_}
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 epatch "${FILESDIR}"/${PN}-1.0_beta2-flags.patch
74
75 AT_M4DIR="m4" eautoreconf
76 }
77
78 src_compile() {
79 use x86 && filter-flags -fforce-addr -frename-registers #200549
80 use doc || export ac_cv_prog_HAVE_DOXYGEN="false"
81
82 # Don't build specs even with doc enabled, just a few people would need
83 # it and causes sandbox violations.
84 export ac_cv_prog_HAVE_PDFLATEX="false"
85
86 econf --disable-dependency-tracking --disable-examples \
87 --disable-sdltest $(use_enable encode)
88
89 emake || die "emake failed."
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" docdir="usr/share/doc/${PF}" \
94 install || die "emake install failed."
95
96 dodoc AUTHORS CHANGES README
97
98 prepalldocs
99
100 if use examples; then
101 rm examples/Makefile*
102 insinto /usr/share/doc/${PF}/examples
103 doins examples/*
104 fi
105 }