summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/po4a/files/po4a-fix-io-capture.patch')
-rw-r--r--app-text/po4a/files/po4a-fix-io-capture.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/app-text/po4a/files/po4a-fix-io-capture.patch b/app-text/po4a/files/po4a-fix-io-capture.patch
deleted file mode 100644
index 91cd9848021b..000000000000
--- a/app-text/po4a/files/po4a-fix-io-capture.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-http://bugs.gentoo.org/show_bug.cgi?id=269650#c7
-from Kent Fredric
---- po4a-0.36.4/Build.PL
-+++ po4a-0.36.4/Build.PL
-@@ -127,8 +127,14 @@
- my %options;
- $options{utf8} = 1;
- my $parser = Pod::Man->new (%options);
--
-- system("PERL5LIB=lib perl po4a --previous po/pod.cfg") and die;
-+ { # Fix for massive slowdown/Memory consumption
-+ local %ENV = %ENV;
-+ $ENV{PERL5LIB}='lib';
-+ open( my $fh, '-|', qw( perl po4a --previous po/pod.cfg )) or die;
-+ while( defined ( my $line = <$fh> ) ){
-+ print $line;
-+ }
-+ }
- system("mkdir -p blib/man/man7") and die;
- system("mkdir -p blib/man/man1") and die;
- system("cp doc/po4a.7.pod blib/man/man7") and die;