Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/graphite2/
Date: Sat, 30 Jan 2016 08:16:27
Message-Id: 1454141772.76af0a40a82f321337bcbc4699f3f11c27a4619c.kensington@gentoo
1 commit: 76af0a40a82f321337bcbc4699f3f11c27a4619c
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 30 08:16:00 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 30 08:16:12 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76af0a40
7
8 media-gfx/graphite2: fix function call
9
10 The function was renamed in e4b034ec87ff80561b18d52ee07df66b04a50cab but usage
11 was never checked for because it is supposed to be a private function.
12
13 Gentoo-bug: 573362
14
15 Package-Manager: portage-2.2.27
16
17 media-gfx/graphite2/graphite2-1.2.1.ebuild | 2 +-
18 media-gfx/graphite2/graphite2-1.2.4-r1.ebuild | 2 +-
19 media-gfx/graphite2/graphite2-1.2.4.ebuild | 2 +-
20 3 files changed, 3 insertions(+), 3 deletions(-)
21
22 diff --git a/media-gfx/graphite2/graphite2-1.2.1.ebuild b/media-gfx/graphite2/graphite2-1.2.1.ebuild
23 index 0cb3b12..b9f54cb 100644
24 --- a/media-gfx/graphite2/graphite2-1.2.1.ebuild
25 +++ b/media-gfx/graphite2/graphite2-1.2.1.ebuild
26 @@ -48,7 +48,7 @@ src_prepare() {
27
28 # fix perl linking
29 if use perl; then
30 - _check_build_dir init
31 + _cmake_check_build_dir init
32 sed -i \
33 -e "s:@BUILD_DIR@:\"${CMAKE_BUILD_DIR}/src\":" \
34 contrib/perl/Build.PL || die
35
36 diff --git a/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild b/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild
37 index 42b25cf..6a40a4c 100644
38 --- a/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild
39 +++ b/media-gfx/graphite2/graphite2-1.2.4-r1.ebuild
40 @@ -69,7 +69,7 @@ multilib_src_configure() {
41
42 # fix perl linking
43 if multilib_is_native_abi && use perl; then
44 - _check_build_dir init
45 + _cmake_check_build_dir init
46 sed -i \
47 -e "s:@BUILD_DIR@:\"${BUILD_DIR}/src\":" \
48 "${S}"/contrib/perl/Build.PL || die
49
50 diff --git a/media-gfx/graphite2/graphite2-1.2.4.ebuild b/media-gfx/graphite2/graphite2-1.2.4.ebuild
51 index 4d5525c..067c996 100644
52 --- a/media-gfx/graphite2/graphite2-1.2.4.ebuild
53 +++ b/media-gfx/graphite2/graphite2-1.2.4.ebuild
54 @@ -48,7 +48,7 @@ src_prepare() {
55
56 # fix perl linking
57 if use perl; then
58 - _check_build_dir init
59 + _cmake_check_build_dir init
60 sed -i \
61 -e "s:@BUILD_DIR@:\"${CMAKE_BUILD_DIR}/src\":" \
62 contrib/perl/Build.PL || die