Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/partio/
Date: Tue, 01 Sep 2020 10:31:29
Message-Id: 1598956211.9ffd0f7060fccb62a83c9c7665cf358daaf54a2d.mgorny@gentoo
1 commit: 9ffd0f7060fccb62a83c9c7665cf358daaf54a2d
2 Author: Adrian Grigo <agrigo2001 <AT> yahoo <DOT> com <DOT> au>
3 AuthorDate: Fri Aug 28 02:03:30 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 1 10:30:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ffd0f70
7
8 media-libs/partio: Call cmake_src_prepare at end of src_prepare
9
10 partio 1.1.0 uses sed to remove the tests from CMakeLists.txt, which
11 should be completed before calling cmake_src_prepare.
12
13 Signed-off-by: Adrian Grigo <agrigo2001 <AT> yahoo.com.au>
14 Package-Manager: Portage-2.3.103, Repoman-2.3.23
15 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
16
17 media-libs/partio/partio-1.1.0_p20170829.ebuild | 4 ++--
18 1 file changed, 2 insertions(+), 2 deletions(-)
19
20 diff --git a/media-libs/partio/partio-1.1.0_p20170829.ebuild b/media-libs/partio/partio-1.1.0_p20170829.ebuild
21 index df16e2b84cf..02803eb335b 100644
22 --- a/media-libs/partio/partio-1.1.0_p20170829.ebuild
23 +++ b/media-libs/partio/partio-1.1.0_p20170829.ebuild
24 @@ -41,9 +41,9 @@ BDEPEND="
25 PATCHES=( "${FILESDIR}/${PN}-1.1.0-Rename-partconv.patch" )
26
27 src_prepare() {
28 - cmake_src_prepare
29 -
30 sed -e '/ADD_SUBDIRECTORY (src\/tests)/d' -i CMakeLists.txt || die
31 +
32 + cmake_src_prepare
33 }
34
35 src_configure() {