Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/tvision/, dev-libs/tvision/files/
Date: Mon, 04 Dec 2017 20:26:47
Message-Id: 1512419185.206f0333252feea61ad01bdceb927ac0a1ee6d60.monsieurp@gentoo
1 commit: 206f0333252feea61ad01bdceb927ac0a1ee6d60
2 Author: Bernd Waibel <waebbl <AT> gmail <DOT> com>
3 AuthorDate: Sat Nov 11 15:49:08 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 4 20:26:25 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=206f0333
7
8 dev-libs/tvision: fix dot-in-INC issue.
9
10 Closes: https://bugs.gentoo.org/634684
11 Closes: https://github.com/gentoo/gentoo/pull/6172
12 Package-Manager: Portage-2.3.13, Repoman-2.3.4
13
14 .../files/tvision-2.1.0_pre2-perl-INC.patch | 30 ++++++++++++++++++++++
15 dev-libs/tvision/tvision-2.1.0_pre2-r4.ebuild | 1 +
16 2 files changed, 31 insertions(+)
17
18 diff --git a/dev-libs/tvision/files/tvision-2.1.0_pre2-perl-INC.patch b/dev-libs/tvision/files/tvision-2.1.0_pre2-perl-INC.patch
19 new file mode 100644
20 index 00000000000..8a559bde5cc
21 --- /dev/null
22 +++ b/dev-libs/tvision/files/tvision-2.1.0_pre2-perl-INC.patch
23 @@ -0,0 +1,30 @@
24 +diff --git a/config.pl b/config.pl
25 +index 53a7b50..784676b 100644
26 +--- a/config.pl
27 ++++ b/config.pl
28 +@@ -5,8 +5,8 @@
29 + # To specify the compilation flags define the CFLAGS environment variable.
30 + #
31 +
32 +-require "miscperl.pl";
33 +-require "conflib.pl";
34 ++require "./miscperl.pl";
35 ++require "./conflib.pl";
36 +
37 + # If the script is newer discard the cache.
38 + #GetCache() unless (-M 'config.pl' < -M 'configure.cache');
39 +diff --git a/confignt.pl b/confignt.pl
40 +index e185f49..9ff7ae6 100644
41 +--- a/confignt.pl
42 ++++ b/confignt.pl
43 +@@ -3,8 +3,8 @@
44 + # see copyrigh file for details
45 + #
46 +
47 +-require "miscperl.pl";
48 +-require "conflib.pl";
49 ++require "./miscperl.pl";
50 ++require "./conflib.pl";
51 +
52 + SeeCommandLine();
53 +
54
55 diff --git a/dev-libs/tvision/tvision-2.1.0_pre2-r4.ebuild b/dev-libs/tvision/tvision-2.1.0_pre2-r4.ebuild
56 index 1bac9ca9f3f..0990426185e 100644
57 --- a/dev-libs/tvision/tvision-2.1.0_pre2-r4.ebuild
58 +++ b/dev-libs/tvision/tvision-2.1.0_pre2-r4.ebuild
59 @@ -28,6 +28,7 @@ PATCHES=(
60 "${FILESDIR}/${P}-flags.patch"
61 "${FILESDIR}/${P}-gcc6.patch" # bug #594176
62 "${FILESDIR}/${P}-build-system.patch" # for EAPI=6
63 + "${FILESDIR}/${P}-perl-INC.patch" # dot-in-INC
64 )
65
66 src_prepare() {