diff options
author | Kent Fredric <kentnl@gentoo.org> | 2017-06-20 06:38:28 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2017-06-20 06:38:42 +1200 |
commit | a478efbe34e83447e7601194a6c44b5a0f3c8e2e (patch) | |
tree | 7e5b0e307153275be9f4f16ca78e939d2fd5ce00 /dev-perl/Chart-Math-Axis | |
parent | app-admin/killproc: keyword ~arm64 (diff) | |
download | gentoo-a478efbe34e83447e7601194a6c44b5a0f3c8e2e.tar.gz gentoo-a478efbe34e83447e7601194a6c44b5a0f3c8e2e.tar.bz2 gentoo-a478efbe34e83447e7601194a6c44b5a0f3c8e2e.zip |
dev-perl/Chart-Math-Axis: Fix for '.' in @INC re bug #615112
Generic Module::Install fix for Perl 5.26
Bug: https://bugs.gentoo.org/615112
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-perl/Chart-Math-Axis')
-rw-r--r-- | dev-perl/Chart-Math-Axis/Chart-Math-Axis-1.60.0-r1.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dev-perl/Chart-Math-Axis/Chart-Math-Axis-1.60.0-r1.ebuild b/dev-perl/Chart-Math-Axis/Chart-Math-Axis-1.60.0-r1.ebuild index 509292c464d3..63bb33f73058 100644 --- a/dev-perl/Chart-Math-Axis/Chart-Math-Axis-1.60.0-r1.ebuild +++ b/dev-perl/Chart-Math-Axis/Chart-Math-Axis-1.60.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -19,3 +19,9 @@ RDEPEND=">=virtual/perl-Math-BigInt-1.70 DEPEND="${RDEPEND}" SRC_TEST="do" + +src_prepare() { + sed -i -e 's/use inc::Module::Install::DSL /use lib q[.]; use inc::Module::Install::DSL /' Makefile.PL || + die "Can't patch Makefile.PL for 5.26 dot-in-inc" + perl-module_src_prepare +} |