Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenglrecorder/
Date: Fri, 29 Nov 2019 09:37:18
Message-Id: 1575020211.03de8c8ed66b20649c758c9158b91fa0e0fbfdb4.asturm@gentoo
1 commit: 03de8c8ed66b20649c758c9158b91fa0e0fbfdb4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 29 09:35:26 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 29 09:36:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03de8c8e
7
8 media-libs/libopenglrecorder: EAPI-7 bump
9
10 Package-Manager: Portage-2.3.80, Repoman-2.3.17
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 .../libopenglrecorder/libopenglrecorder-0.1.0.ebuild | 20 +++++++++-----------
14 1 file changed, 9 insertions(+), 11 deletions(-)
15
16 diff --git a/media-libs/libopenglrecorder/libopenglrecorder-0.1.0.ebuild b/media-libs/libopenglrecorder/libopenglrecorder-0.1.0.ebuild
17 index 317958e4f21..63b0e6ac7f8 100644
18 --- a/media-libs/libopenglrecorder/libopenglrecorder-0.1.0.ebuild
19 +++ b/media-libs/libopenglrecorder/libopenglrecorder-0.1.0.ebuild
20 @@ -1,7 +1,7 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 inherit cmake-multilib
29
30 @@ -14,7 +14,11 @@ SLOT="0"
31 KEYWORDS="~amd64 ~x86"
32 IUSE="openh264 sound vpx"
33
34 -RDEPEND="media-libs/libjpeg-turbo[${MULTILIB_USEDEP}]
35 +BDEPEND="
36 + virtual/pkgconfig
37 +"
38 +DEPEND="
39 + media-libs/libjpeg-turbo[${MULTILIB_USEDEP}]
40 openh264? ( media-libs/openh264[${MULTILIB_USEDEP}] )
41 sound? (
42 media-libs/libvorbis[${MULTILIB_USEDEP}]
43 @@ -22,19 +26,13 @@ RDEPEND="media-libs/libjpeg-turbo[${MULTILIB_USEDEP}]
44 )
45 vpx? ( media-libs/libvpx:0=[${MULTILIB_USEDEP}] )"
46
47 -DEPEND="${RDEPEND}
48 - virtual/pkgconfig"
49 +RDEPEND="${DEPEND}"
50
51 -DOCS=(
52 - CHANGELOG.md
53 - README.md
54 - USAGE.md
55 -)
56 +DOCS=( CHANGELOG.md README.md USAGE.md )
57
58 multilib_src_configure() {
59 local mycmakeargs=(
60 -DBUILD_PULSE_WO_DL=ON
61 - -DBUILD_SHARED_LIBS=ON
62 -DSTATIC_RUNTIME_LIBS=OFF
63 -DBUILD_WITH_H264=$(usex openh264)
64 -DBUILD_RECORDER_WITH_SOUND=$(usex sound)