Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/opusfile: opusfile-0.5.ebuild ChangeLog opusfile-0.2.ebuild
Date: Sun, 27 Apr 2014 18:34:40
Message-Id: 20140427183433.BE48B2004B@flycatcher.gentoo.org
1 polynomial-c 14/04/27 18:34:33
2
3 Modified: ChangeLog
4 Added: opusfile-0.5.ebuild
5 Removed: opusfile-0.2.ebuild
6 Log:
7 Version bump. Removed old
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
10
11 Revision Changes Path
12 1.8 media-libs/opusfile/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opusfile/ChangeLog?rev=1.8&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opusfile/ChangeLog?rev=1.8&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opusfile/ChangeLog?r1=1.7&r2=1.8
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/opusfile/ChangeLog,v
21 retrieving revision 1.7
22 retrieving revision 1.8
23 diff -u -r1.7 -r1.8
24 --- ChangeLog 13 Apr 2014 15:17:59 -0000 1.7
25 +++ ChangeLog 27 Apr 2014 18:34:33 -0000 1.8
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-libs/opusfile
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/opusfile/ChangeLog,v 1.7 2014/04/13 15:17:59 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/opusfile/ChangeLog,v 1.8 2014/04/27 18:34:33 polynomial-c Exp $
31 +
32 +*opusfile-0.5 (27 Apr 2014)
33 +
34 + 27 Apr 2014; Lars Wendler <polynomial-c@g.o> -opusfile-0.2.ebuild,
35 + +opusfile-0.5.ebuild:
36 + Version bump. Removed old.
37
38 13 Apr 2014; Jeroen Roovers <jer@g.o> opusfile-0.4.ebuild:
39 Marked ~hppa (bug #503608).
40
41
42
43 1.1 media-libs/opusfile/opusfile-0.5.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opusfile/opusfile-0.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opusfile/opusfile-0.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: opusfile-0.5.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/opusfile/opusfile-0.5.ebuild,v 1.1 2014/04/27 18:34:33 polynomial-c Exp $
53
54 EAPI=5
55
56 DESCRIPTION="A high-level decoding and seeking API for .opus files"
57 HOMEPAGE="http://www.opus-codec.org/"
58 SRC_URI="http://downloads.xiph.org/releases/opus/${P}.tar.gz"
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
63 IUSE="doc fixed-point +float +http static-libs"
64
65 RDEPEND="media-libs/libogg
66 media-libs/opus
67 http? ( dev-libs/openssl )"
68
69 DEPEND="${RDEPEND}
70 doc? ( app-doc/doxygen )"
71
72 REQUIRED_USE="^^ ( fixed-point float )"
73
74 src_configure() {
75 econf \
76 --docdir=/usr/share/doc/${PF} \
77 $(use_enable doc) \
78 $(use_enable fixed-point)\
79 $(use_enable float) \
80 $(use_enable http) \
81 $(use_enable static-libs static)
82 }