From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 199F8138334 for ; Wed, 11 Jul 2018 20:46:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66AC1E0856; Wed, 11 Jul 2018 20:46:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2F626E0856 for ; Wed, 11 Jul 2018 20:46:23 +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 C01D8335CA3 for ; Wed, 11 Jul 2018 20:46:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C709F385 for ; Wed, 11 Jul 2018 20:46:19 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1531341968.2b2cd5331ceac76d46a55467a9b31e2104b236d9.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/codec2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/codec2/codec2-0.8.1.ebuild X-VCS-Directories: media-libs/codec2/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: 2b2cd5331ceac76d46a55467a9b31e2104b236d9 X-VCS-Branch: master Date: Wed, 11 Jul 2018 20:46:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bae1c960-0b13-4e49-b44d-1be6cc0907a1 X-Archives-Hash: e1cea1fe824325af9a521502e82146b1 commit: 2b2cd5331ceac76d46a55467a9b31e2104b236d9 Author: Zero_Chaos gentoo org> AuthorDate: Wed Jul 11 17:09:24 2018 +0000 Commit: Richard Farina gentoo org> CommitDate: Wed Jul 11 20:46:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b2cd533 media-libs/codec2: add examples Package-Manager: Portage-2.3.41, Repoman-2.3.9 media-libs/codec2/codec2-0.8.1.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/media-libs/codec2/codec2-0.8.1.ebuild b/media-libs/codec2/codec2-0.8.1.ebuild index 1f2955c5439..46f65f92f89 100644 --- a/media-libs/codec2/codec2-0.8.1.ebuild +++ b/media-libs/codec2/codec2-0.8.1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://hobbes1069.fedorapeople.org/freetel/codec2/${P}.tar.xz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~hppa ~ia64 ~x86" -IUSE="" +IUSE="examples" DEPEND="" RDEPEND="${DEPEND}" @@ -21,3 +21,12 @@ multilib_src_configure() { local mycmakeargs=( -DUNITTEST=OFF ) cmake-utils_src_configure } + +src_install() { + cmake-multilib_src_install + + if use examples; then + insinto /usr/share/codec2 + doins -r wav raw + fi +}