Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/PDL-Graphics-Gnuplot/
Date: Mon, 26 Jun 2017 12:48:16
Message-Id: 1498481270.9b7379d0edebc7ec06b8a1245ade79c4fbdaa1a1.dilfridge@gentoo
1 commit: 9b7379d0edebc7ec06b8a1245ade79c4fbdaa1a1
2 Author: Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 26 12:47:50 2017 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 26 12:47:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b7379d0
7
8 dev-perl/PDL-Graphics-Gnuplot: Add use requirements for gnuplot, bug 622586
9
10 Depending on the Gnuplot compilation options, differents sets of terminals are available. When (on Linux) either X or Qt4 terminals are enabled, one
11 of these automatically becomes default terminal after program start. This can be verified with "show terminal", and in this case also
12 PDL::Graphics::Gnuplot works fine.
13
14 However, if both X and Qt4 terminal are disabled during compilation, the default terminal after gnuplot start is "unknown", meaning it's not
15 functional (and a terminal has to be selected first). This makes the PDL::Graphics::Gnuplot tests fail, and probably also its functionality.
16
17 See also https://github.com/drzowie/PDL-Graphics-Gnuplot/issues/66
18
19 Package-Manager: Portage-2.3.6, Repoman-2.3.2
20
21 dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0.ebuild | 1 +
22 1 file changed, 1 insertion(+)
23
24 diff --git a/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0.ebuild b/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0.ebuild
25 index b27d7b865cc..a7c38c9b1ff 100644
26 --- a/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0.ebuild
27 +++ b/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0.ebuild
28 @@ -23,6 +23,7 @@ RDEPEND="
29 dev-perl/Safe-Isa
30 virtual/perl-Storable
31 virtual/perl-Time-HiRes
32 + || ( sci-visualization/gnuplot[X] sci-visualization/gnuplot[qt4] )
33 "
34 DEPEND="${RDEPEND}
35 >=virtual/perl-ExtUtils-MakeMaker-6.480.0