Gentoo Archives: gentoo-commits

From: "Timo Gurr (tgurr)" <tgurr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/celt: ChangeLog celt-0.7.1.ebuild celt-0.7.0-r2.ebuild
Date: Fri, 29 Jan 2010 17:51:23
Message-Id: E1Nauzr-0001Vk-GM@stork.gentoo.org
1 tgurr 10/01/29 17:51:07
2
3 Modified: ChangeLog
4 Added: celt-0.7.1.ebuild
5 Removed: celt-0.7.0-r2.ebuild
6 Log:
7 Version bump, remove old. Bit-stream compatible with previous version this time.
8 (Portage version: 2.2_rc61/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 media-libs/celt/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/celt/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/celt/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/celt/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/celt/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 8 Dec 2009 00:41:32 -0000 1.7
24 +++ ChangeLog 29 Jan 2010 17:51:07 -0000 1.8
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-libs/celt
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/celt/ChangeLog,v 1.7 2009/12/08 00:41:32 tgurr Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/celt/ChangeLog,v 1.8 2010/01/29 17:51:07 tgurr Exp $
31 +
32 +*celt-0.7.1 (29 Jan 2010)
33 +
34 + 29 Jan 2010; Timo Gurr <tgurr@g.o> -celt-0.7.0-r2.ebuild,
35 + +celt-0.7.1.ebuild:
36 + Version bump, remove old. Bit-stream compatible with previous version this
37 + time.
38
39 *celt-0.7.0-r2 (08 Dec 2009)
40
41
42
43
44 1.1 media-libs/celt/celt-0.7.1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/celt/celt-0.7.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/celt/celt-0.7.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: celt-0.7.1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-libs/celt/celt-0.7.1.ebuild,v 1.1 2010/01/29 17:51:07 tgurr Exp $
54
55 EAPI="2"
56
57 inherit multilib
58
59 DESCRIPTION="CELT is a very low delay audio codec designed for high-quality communications."
60 HOMEPAGE="http://www.celt-codec.org/"
61 SRC_URI="http://downloads.us.xiph.org/releases/${PN}/${P}.tar.gz"
62
63 LICENSE="as-is"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
66 IUSE="ogg"
67
68 DEPEND="ogg? ( media-libs/libogg )"
69 RDEPEND="${DEPEND}"
70
71 src_configure() {
72 econf $(use_with ogg ogg /usr)
73 }
74
75 src_install() {
76 emake DESTDIR="${D}" install || die "emake install failed."
77 dodoc ChangeLog README TODO || die "dodoc failed."
78
79 find "${D}" -name '*.la' -delete
80 }