forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-libs/opusfile: Bump to version 0.10
Package-Manager: Portage-2.3.16, Repoman-2.3.6
- Loading branch information
Lars Wendler
committed
Nov 22, 2017
1 parent
14af310
commit f8d6d76
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST opusfile-0.10.tar.gz 467700 BLAKE2B eab1c5eadd13ad574590c5b6a4bf8cc7f82ec0d723c240a0ce8104e108772549a4c81dd244aa61d310f0f432b2426a6e74de3c7b06aa8ab7e2f33e1c3692a826 SHA512 302601c31ca28bff175cefa99ac16177122a786d043be229616e2c98b7ffaf4a96b8bb17ca16e31240325a92763f417315b54d8f1b2f4f63f445cb7ad43c4a37 | ||
DIST opusfile-0.6.tar.gz 437980 SHA256 2428717b356e139f18ed2fdb5ad990b5654a238907a0058200b39c46a7d03ea6 SHA512 6fee48f3da21eeffed1ee5a3852234032aa559335225b07383c1104f5efba2f88aebe41c453ab2de472a69766e0fa9b48bec2f97d2a096b27afa96901802ba02 WHIRLPOOL 27cb5a0b49722949b89ae610c9f6ef9d4e73ec8a2f909f051f8f7f90f6d9ab7e2250eae8f8954e2574711d2a9c4d4cff5dda9ef4c7f9970f4a2aa00628a131d2 | ||
DIST opusfile-0.8.tar.gz 464600 SHA256 2c231ed3cfaa1b3173f52d740e5bbd77d51b9dfecb87014b404917fba4b855a4 SHA512 4db553211ac52b9cd9c03449e602fb720d757df385b74e076ce3552a17ecf0e80c861c326fd2570b26f5ffc1c42dff781eef61c25d7a016116a021c9d2176bbb WHIRLPOOL d2b7a31e28030f3339aa4fda5907fce2cb5681b84a37393ed3dc2ee95187faec7d6fac14d7b5a38ea9d1eefcf90cd79fa6764f2fc2455eafe86c849fd2f14f84 | ||
DIST opusfile-0.9.tar.gz 467683 SHA256 f75fb500e40b122775ac1a71ad80c4477698842a8fe9da4a1b4a1a9f16e4e979 SHA512 9167b100ad4ea79af8bbe60ce710409b0cfd41b09d640a203a83a751c30eed0bd91b28cbf4d5fe3fcf41269881eb579300c5568fdd6f30208c6b84b429ad6632 WHIRLPOOL 284932f7a35cc8ad29f85d16bb19dbd4a0c6243cf5d30ce01f0bb908b0e393f05be93065f491087659eb7036fbef6015eb2c72254cbbbca4dd07014ec459d83b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="A high-level decoding and seeking API for .opus files" | ||
HOMEPAGE="https://www.opus-codec.org/" | ||
SRC_URI="https://downloads.xiph.org/releases/opus/${P}.tar.gz" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" | ||
IUSE="doc fixed-point +float +http libressl static-libs" | ||
|
||
RDEPEND="media-libs/libogg | ||
media-libs/opus | ||
http? ( | ||
!libressl? ( dev-libs/openssl:0= ) | ||
libressl? ( dev-libs/libressl:= ) | ||
)" | ||
|
||
DEPEND="${RDEPEND} | ||
doc? ( app-doc/doxygen )" | ||
|
||
REQUIRED_USE="^^ ( fixed-point float )" | ||
|
||
src_configure() { | ||
local myeconfargs=( | ||
--docdir=/usr/share/doc/${PF} | ||
$(use_enable doc) | ||
$(use_enable fixed-point)\ | ||
$(use_enable float) | ||
$(use_enable http) | ||
$(use_enable static-libs static) | ||
) | ||
econf "${myeconfargs[@]}" | ||
} |