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: celt-0.7.0.ebuild ChangeLog
Date: Mon, 26 Oct 2009 21:58:26
Message-Id: E1N2Xa2-0008FR-Vw@stork.gentoo.org
1 tgurr 09/10/26 21:58:22
2
3 Modified: ChangeLog
4 Added: celt-0.7.0.ebuild
5 Log:
6 Version bump, includes API changes in this release.
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 media-libs/celt/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/celt/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/celt/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/celt/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/celt/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 29 Sep 2009 17:49:21 -0000 1.4
23 +++ ChangeLog 26 Oct 2009 21:58:22 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/celt
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/celt/ChangeLog,v 1.4 2009/09/29 17:49:21 klausman Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/celt/ChangeLog,v 1.5 2009/10/26 21:58:22 tgurr Exp $
29 +
30 +*celt-0.7.0 (26 Oct 2009)
31 +
32 + 26 Oct 2009; Timo Gurr <tgurr@g.o> +celt-0.7.0.ebuild:
33 + Version bump, includes API changes in this release.
34
35 29 Sep 2009; Tobias Klausmann <klausman@g.o> celt-0.6.1.ebuild:
36 Keyworded on alpha, bug #276355
37
38
39
40 1.1 media-libs/celt/celt-0.7.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/celt/celt-0.7.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/celt/celt-0.7.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: celt-0.7.0.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/celt/celt-0.7.0.ebuild,v 1.1 2009/10/26 21:58:22 tgurr Exp $
50
51 EAPI="2"
52
53 DESCRIPTION="CELT is a very low delay audio codec designed for high-quality communications."
54 HOMEPAGE="http://www.celt-codec.org/"
55 SRC_URI="http://downloads.us.xiph.org/releases/${PN}/${P}.tar.gz"
56
57 LICENSE="as-is"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
60 IUSE="ogg"
61
62 DEPEND="ogg? ( media-libs/libogg )"
63 RDEPEND="${DEPEND}"
64
65 src_configure() {
66 econf $(use_with ogg ogg /usr)
67 }
68
69 src_install() {
70 emake DESTDIR="${D}" install || die "emake install failed."
71 dodoc ChangeLog README TODO || die "dodoc failed."
72
73 find "${D}" -name '*.la' -delete
74 }