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_beta2-r1.ebuild
Date: Fri, 07 Dec 2007 20:01:22
Message-Id: E1J0jNq-000772-OG@stork.gentoo.org
1 aballier 07/12/07 20:01:14
2
3 Modified: ChangeLog
4 Added: libtheora-1.0_beta2-r1.ebuild
5 Log:
6 fix textrels, bug #200670, getting rid of pic useflag, readding ~x86-fbsd keyword as its fine there
7 (Portage version: 2.1.4_rc8)
8
9 Revision Changes Path
10 1.62 media-libs/libtheora/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?rev=1.62&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?rev=1.62&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?r1=1.61&r2=1.62
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v
19 retrieving revision 1.61
20 retrieving revision 1.62
21 diff -u -r1.61 -r1.62
22 --- ChangeLog 27 Nov 2007 20:54:56 -0000 1.61
23 +++ ChangeLog 7 Dec 2007 20:01:14 -0000 1.62
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-libs/libtheora
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.61 2007/11/27 20:54:56 drac Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.62 2007/12/07 20:01:14 aballier Exp $
29 +
30 +*libtheora-1.0_beta2-r1 (07 Dec 2007)
31 +
32 + 07 Dec 2007; Alexis Ballier <aballier@g.o>
33 + +files/libtheora-1.0_beta2-pic-fix.patch, +libtheora-1.0_beta2-r1.ebuild:
34 + fix textrels, bug #200670, getting rid of pic useflag, readding ~x86-fbsd
35 + keyword as its fine there
36
37 27 Nov 2007; Samuli Suominen <drac@g.o>
38 files/libtheora-1.0_beta2-flags.patch:
39
40
41
42 1.1 media-libs/libtheora/libtheora-1.0_beta2-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/libtheora-1.0_beta2-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/libtheora-1.0_beta2-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libtheora-1.0_beta2-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.0_beta2-r1.ebuild,v 1.1 2007/12/07 20:01:14 aballier Exp $
52
53 inherit autotools eutils
54
55 DESCRIPTION="The Theora Video Compression Codec"
56 HOMEPAGE="http://www.theora.org"
57 SRC_URI="http://downloads.xiph.org/releases/theora/${P/_}.tar.bz2"
58
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
62 IUSE="doc encode examples"
63
64 RDEPEND=">=media-libs/libogg-1.1
65 encode? ( >=media-libs/libvorbis-1.0.1 )"
66 DEPEND="${RDEPEND}
67 doc? ( app-doc/doxygen )
68 dev-util/pkgconfig"
69
70 S=${WORKDIR}/${P/_}
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}"/${P}-flags.patch
76 epatch "${FILESDIR}"/${P}-pic-fix.patch
77 AT_M4DIR="m4" eautoreconf
78 }
79
80 src_compile() {
81 local myconf
82
83 use doc || export ac_cv_prog_HAVE_DOXYGEN="false"
84
85 econf --disable-dependency-tracking --disable-examples \
86 --disable-sdltest $(use_enable encode) ${myconf}
87
88 emake || die "emake failed."
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" docdir="usr/share/doc/${PF}" \
93 install || die "emake install failed."
94
95 dodoc AUTHORS CHANGES README
96
97 prepalldocs
98
99 if use examples; then
100 rm examples/Makefile*
101 insinto /usr/share/doc/${PF}/examples
102 doins examples/*
103 fi
104 }
105
106
107
108 --
109 gentoo-commits@g.o mailing list