commit: d6dd68a471659ba812f5fe9526b1c2f181ff7b32
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 30 22:51:06 2017 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Jun 30 22:51:06 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6dd68a4
dev-perl/Locale-Msgfmt: Add build fix for Perl 5.26, bug 617102
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-perl/Locale-Msgfmt/Locale-Msgfmt-0.150.0-r1.ebuild | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/dev-perl/Locale-Msgfmt/Locale-Msgfmt-0.150.0-r1.ebuild
b/dev-perl/Locale-Msgfmt/Locale-Msgfmt-0.150.0-r1.ebuild
index 3e15b6952a3..b7d72d4bcb7 100644
--- a/dev-perl/Locale-Msgfmt/Locale-Msgfmt-0.150.0-r1.ebuild
+++ b/dev-perl/Locale-Msgfmt/Locale-Msgfmt-0.150.0-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=6
-MODULE_AUTHOR=AZAWAWI
-MODULE_VERSION=0.15
+DIST_AUTHOR=AZAWAWI
+DIST_VERSION=0.15
inherit perl-module
DESCRIPTION="Compile .po files to .mo files"
@@ -14,7 +14,10 @@ KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND=""
-DEPEND="
- test? ( virtual/perl-Test-Simple )"
+DEPEND="test? ( virtual/perl-Test-Simple )"
-SRC_TEST=do
+src_prepare() {
+ sed -i -e 's/use inc::Module::Install::DSL/use lib q[.];\nuse
inc::Module::Install::DSL/' Makefile.PL ||
+ die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+ perl-module_src_prepare
+}