Gentoo Archives: gentoo-dev

From: Mike Gilbert <floppym@g.o>
To: gentoo-dev@l.g.o
Cc: x11@g.o
Subject: [gentoo-dev] [PATCH 3/7] x11-apps/intel-gpu-tools: remove reference to AUTOTOOLS_BUILD_DIR
Date: Sun, 17 Apr 2016 14:15:44
Message-Id: 1460902427-5759-4-git-send-email-floppym@gentoo.org
In Reply to: [gentoo-dev] [PATCH 0/7] Dropping autotools-utils from xorg-2 by Mike Gilbert
1 Package-Manager: portage-2.2.28_p64
2 ---
3 x11-apps/intel-gpu-tools/intel-gpu-tools-1.10.ebuild | 16 ++++++++--------
4 x11-apps/intel-gpu-tools/intel-gpu-tools-1.11-r1.ebuild | 16 ++++++++--------
5 x11-apps/intel-gpu-tools/intel-gpu-tools-1.12.ebuild | 16 ++++++++--------
6 3 files changed, 24 insertions(+), 24 deletions(-)
7
8 diff --git a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.10.ebuild b/x11-apps/intel-gpu-tools/intel-gpu-tools-1.10.ebuild
9 index e0296a1..6092121 100644
10 --- a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.10.ebuild
11 +++ b/x11-apps/intel-gpu-tools/intel-gpu-tools-1.10.ebuild
12 @@ -1,4 +1,4 @@
13 -# Copyright 1999-2015 Gentoo Foundation
14 +# Copyright 1999-2016 Gentoo Foundation
15 # Distributed under the terms of the GNU General Public License v2
16 # $Id$
17
18 @@ -40,13 +40,13 @@ src_install() {
19 xorg-2_src_install
20 if use test-programs; then
21 local testprogram
22 - pushd "${AUTOTOOLS_BUILD_DIR}"/tests || die
23 - for testprogram in $(<multi-tests.txt) $(<single-tests.txt); do
24 - if [[ -f ${testprogram} ]]; then
25 - dobin "${testprogram}"
26 - fi
27 - done
28 - popd
29 + pushd tests >/dev/null || die
30 + for testprogram in $(<multi-tests.txt) $(<single-tests.txt); do
31 + if [[ -f ${testprogram} ]]; then
32 + dobin "${testprogram}"
33 + fi
34 + done
35 + popd >/dev/null || die
36 fi
37 }
38
39 diff --git a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.11-r1.ebuild b/x11-apps/intel-gpu-tools/intel-gpu-tools-1.11-r1.ebuild
40 index 8251c6f..6b331c4 100644
41 --- a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.11-r1.ebuild
42 +++ b/x11-apps/intel-gpu-tools/intel-gpu-tools-1.11-r1.ebuild
43 @@ -1,4 +1,4 @@
44 -# Copyright 1999-2015 Gentoo Foundation
45 +# Copyright 1999-2016 Gentoo Foundation
46 # Distributed under the terms of the GNU General Public License v2
47 # $Id$
48
49 @@ -40,13 +40,13 @@ src_install() {
50 xorg-2_src_install
51 if use test-programs; then
52 local testprogram
53 - pushd "${AUTOTOOLS_BUILD_DIR}"/tests || die
54 - for testprogram in $(<multi-tests.txt) $(<single-tests.txt); do
55 - if [[ -f ${testprogram} ]]; then
56 - dobin "${testprogram}"
57 - fi
58 - done
59 - popd
60 + pushd tests >/dev/null || die
61 + for testprogram in $(<multi-tests.txt) $(<single-tests.txt); do
62 + if [[ -f ${testprogram} ]]; then
63 + dobin "${testprogram}"
64 + fi
65 + done
66 + popd >/dev/null || die
67 fi
68 }
69
70 diff --git a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.12.ebuild b/x11-apps/intel-gpu-tools/intel-gpu-tools-1.12.ebuild
71 index 6ce5c35..69b9b8e 100644
72 --- a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.12.ebuild
73 +++ b/x11-apps/intel-gpu-tools/intel-gpu-tools-1.12.ebuild
74 @@ -1,4 +1,4 @@
75 -# Copyright 1999-2015 Gentoo Foundation
76 +# Copyright 1999-2016 Gentoo Foundation
77 # Distributed under the terms of the GNU General Public License v2
78 # $Id$
79
80 @@ -40,13 +40,13 @@ src_install() {
81 xorg-2_src_install
82 if use test-programs; then
83 local testprogram
84 - pushd "${AUTOTOOLS_BUILD_DIR}"/tests || die
85 - for testprogram in $(<multi-tests.txt) $(<single-tests.txt); do
86 - if [[ -f ${testprogram} ]]; then
87 - dobin "${testprogram}"
88 - fi
89 - done
90 - popd
91 + pushd tests >/dev/null || die
92 + for testprogram in $(<multi-tests.txt) $(<single-tests.txt); do
93 + if [[ -f ${testprogram} ]]; then
94 + dobin "${testprogram}"
95 + fi
96 + done
97 + popd >/dev/null || die
98 fi
99 }
100
101 --
102 2.8.1