From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1115406-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CD4E3138334 for <garchives@archives.gentoo.org>; Thu, 10 Oct 2019 08:17:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 041CEE086C; Thu, 10 Oct 2019 08:17:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E0047E086C for <gentoo-commits@lists.gentoo.org>; Thu, 10 Oct 2019 08:17:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4A9334BAC7 for <gentoo-commits@lists.gentoo.org>; Thu, 10 Oct 2019 08:17:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25A4A76A for <gentoo-commits@lists.gentoo.org>; Thu, 10 Oct 2019 08:17:26 +0000 (UTC) From: "Jeroen Roovers" <jer@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" <jer@gentoo.org> Message-ID: <1570695443.dcb39879acc28414d9be5e35fc98aa6602e7d016.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/bcg729/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/bcg729/bcg729-999999.ebuild X-VCS-Directories: media-libs/bcg729/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: dcb39879acc28414d9be5e35fc98aa6602e7d016 X-VCS-Branch: master Date: Thu, 10 Oct 2019 08:17:26 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bea057cd-35f1-4e92-a768-512f54b86db5 X-Archives-Hash: 1fd469e3c2b28a21ac964ce081e69365 commit: dcb39879acc28414d9be5e35fc98aa6602e7d016 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org> AuthorDate: Thu Oct 10 08:17:10 2019 +0000 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org> CommitDate: Thu Oct 10 08:17:23 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb39879 media-libs/bcg729: Add live ebuild Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org> media-libs/bcg729/bcg729-999999.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/media-libs/bcg729/bcg729-999999.ebuild b/media-libs/bcg729/bcg729-999999.ebuild new file mode 100644 index 00000000000..961164ae6e9 --- /dev/null +++ b/media-libs/bcg729/bcg729-999999.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit git-r3 cmake-multilib + +DESCRIPTION="encoder and decoder of the ITU G729 Annex A/B speech codec" +HOMEPAGE="https://github.com/BelledonneCommunications/bcg729" +EGIT_REPO_URI="${HOMEPAGE}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" +IUSE="static-libs" +RDEPEND=" + !media-plugins/mediastreamer-bcg729 +" + +multilib_src_configure() { + local mycmakeargs+=( + -DENABLE_STATIC=$(usex static-libs) + ) + cmake-utils_src_configure +}