Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opusfile/
Date: Wed, 13 Jul 2016 10:16:57
Message-Id: 1468404973.6d072e2cf48417d46afd4a566230fda1f9aafd6f.polynomial-c@gentoo
1 commit: 6d072e2cf48417d46afd4a566230fda1f9aafd6f
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 13 08:18:54 2016 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 13 10:16:13 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d072e2c
7
8 media-libs/opusfile: Bump to version 0.8
9
10 Package-Manager: portage-2.3.0
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 media-libs/opusfile/Manifest | 1 +
14 media-libs/opusfile/opusfile-0.8.ebuild | 36 +++++++++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/media-libs/opusfile/Manifest b/media-libs/opusfile/Manifest
18 index f57dfcd..06d606d 100644
19 --- a/media-libs/opusfile/Manifest
20 +++ b/media-libs/opusfile/Manifest
21 @@ -1,2 +1,3 @@
22 DIST opusfile-0.6.tar.gz 437980 SHA256 2428717b356e139f18ed2fdb5ad990b5654a238907a0058200b39c46a7d03ea6 SHA512 6fee48f3da21eeffed1ee5a3852234032aa559335225b07383c1104f5efba2f88aebe41c453ab2de472a69766e0fa9b48bec2f97d2a096b27afa96901802ba02 WHIRLPOOL 27cb5a0b49722949b89ae610c9f6ef9d4e73ec8a2f909f051f8f7f90f6d9ab7e2250eae8f8954e2574711d2a9c4d4cff5dda9ef4c7f9970f4a2aa00628a131d2
23 DIST opusfile-0.7.tar.gz 463581 SHA256 9e2bed13bc729058591a0f1cab2505e8cfd8e7ac460bf10a78bcc3b125e7c301 SHA512 13ad627e314c0f35f987d8170e090e0683d898f8c553f53a37b66a4401ff1843069e0adc35b32ef6f838d86a2a333bf11a37b4cf99161d34d5a7530619a3ade6 WHIRLPOOL ae8cd698177cc9ba3543cf7ba43df609d8b42628a4a95f67cae575f126a753cab9d0f5097e5c01630d665d931466a813e281065af1baf59445021b341970ad26
24 +DIST opusfile-0.8.tar.gz 464600 SHA256 2c231ed3cfaa1b3173f52d740e5bbd77d51b9dfecb87014b404917fba4b855a4 SHA512 4db553211ac52b9cd9c03449e602fb720d757df385b74e076ce3552a17ecf0e80c861c326fd2570b26f5ffc1c42dff781eef61c25d7a016116a021c9d2176bbb WHIRLPOOL d2b7a31e28030f3339aa4fda5907fce2cb5681b84a37393ed3dc2ee95187faec7d6fac14d7b5a38ea9d1eefcf90cd79fa6764f2fc2455eafe86c849fd2f14f84
25
26 diff --git a/media-libs/opusfile/opusfile-0.8.ebuild b/media-libs/opusfile/opusfile-0.8.ebuild
27 new file mode 100644
28 index 0000000..a1706b8
29 --- /dev/null
30 +++ b/media-libs/opusfile/opusfile-0.8.ebuild
31 @@ -0,0 +1,36 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +DESCRIPTION="A high-level decoding and seeking API for .opus files"
39 +HOMEPAGE="http://www.opus-codec.org/"
40 +SRC_URI="http://downloads.xiph.org/releases/opus/${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
45 +IUSE="doc fixed-point +float +http libressl static-libs"
46 +
47 +RDEPEND="media-libs/libogg
48 + media-libs/opus
49 + http? (
50 + !libressl? ( dev-libs/openssl:0= )
51 + libressl? ( dev-libs/libressl:= )
52 + )"
53 +
54 +DEPEND="${RDEPEND}
55 + doc? ( app-doc/doxygen )"
56 +
57 +REQUIRED_USE="^^ ( fixed-point float )"
58 +
59 +src_configure() {
60 + econf \
61 + --docdir=/usr/share/doc/${PF} \
62 + $(use_enable doc) \
63 + $(use_enable fixed-point)\
64 + $(use_enable float) \
65 + $(use_enable http) \
66 + $(use_enable static-libs static)
67 +}