summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2017-07-01 00:55:43 +0200
committerAndreas K. Hüttel <dilfridge@gentoo.org>2017-07-01 00:55:43 +0200
commit5b5087afce003e7f8cbd542fd83492546abb18fc (patch)
treeb787cea900ca41210a90817c6b314a8abf52943c /dev-perl/Mail-Mbox-MessageParser
parentdev-perl/MP3-Info: Add build fix for Perl 5.26, bug 617104 (diff)
downloadgentoo-5b5087afce003e7f8cbd542fd83492546abb18fc.tar.gz
gentoo-5b5087afce003e7f8cbd542fd83492546abb18fc.tar.bz2
gentoo-5b5087afce003e7f8cbd542fd83492546abb18fc.zip
dev-perl/Mail-Mbox-MessageParser: Add build fix for Perl 5.26, bug 617108
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-perl/Mail-Mbox-MessageParser')
-rw-r--r--dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild14
1 files changed, 9 insertions, 5 deletions
diff --git a/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild b/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild
index 33c6a385c9e3..f541ca2fe60b 100644
--- a/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild
+++ b/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=6
-MODULE_AUTHOR=DCOPPIT
-MODULE_VERSION=1.5105
+DIST_AUTHOR=DCOPPIT
+DIST_VERSION=1.5105
inherit perl-module
DESCRIPTION="A fast and simple mbox folder reader"
@@ -26,4 +26,8 @@ DEPEND="${RDEPEND}
test? ( virtual/perl-Test-Simple )
"
-SRC_TEST="do parallel"
+src_prepare() {
+ sed -i -e 's/use inc::Module::Install/use lib q[.]; use inc::Module::Install/' Makefile.PL ||
+ die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+ perl-module_src_prepare
+}