Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libtheora: ChangeLog libtheora-1.0_beta2.ebuild
Date: Sun, 25 Nov 2007 21:19:42
Message-Id: E1IwOl6-00037z-Q1@stork.gentoo.org
1 drac 07/11/25 21:11:20
2
3 Modified: ChangeLog
4 Added: libtheora-1.0_beta2.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.4_rc3)
8
9 Revision Changes Path
10 1.60 media-libs/libtheora/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?rev=1.60&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?rev=1.60&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/ChangeLog?r1=1.59&r2=1.60
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v
19 retrieving revision 1.59
20 retrieving revision 1.60
21 diff -u -r1.59 -r1.60
22 --- ChangeLog 4 Jun 2007 16:05:29 -0000 1.59
23 +++ ChangeLog 25 Nov 2007 21:11:20 -0000 1.60
24 @@ -1,6 +1,12 @@
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.59 2007/06/04 16:05:29 lu_zero Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.60 2007/11/25 21:11:20 drac Exp $
29 +
30 +*libtheora-1.0_beta2 (25 Nov 2007)
31 +
32 + 25 Nov 2007; Samuli Suominen <drac@g.o>
33 + +files/libtheora-1.0_beta2-flags.patch, +libtheora-1.0_beta2.ebuild:
34 + Version bump.
35
36 *libtheora-1.0_alpha7-r1 (04 Jun 2007)
37
38
39
40
41 1.1 media-libs/libtheora/libtheora-1.0_beta2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/libtheora-1.0_beta2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtheora/libtheora-1.0_beta2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libtheora-1.0_beta2.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.0_beta2.ebuild,v 1.1 2007/11/25 21:11:20 drac Exp $
51
52 inherit autotools eutils
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"
61 IUSE="doc encode examples pic"
62
63 RDEPEND=">=media-libs/libogg-1.1
64 encode? ( >=media-libs/libvorbis-1.0.1 )"
65 DEPEND="${RDEPEND}
66 doc? ( app-doc/doxygen )
67 dev-util/pkgconfig"
68
69 S=${WORKDIR}/${P/_}
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 epatch "${FILESDIR}"/${P}-flags.patch
75 AT_M4DIR="m4" eautoreconf
76 }
77
78 src_compile() {
79 local myconf
80
81 use pic && myconf="--disable-asm"
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