freebsd-ports/devel/p5-POE-Component-Hailo/files/patch-Makefile.PL.in
Steve Wills 358b9d259e POE::Component::Hailo is a POE component that provides a non-blocking wrapper
around Hailo. It accepts the events listed under "INPUT" and emits the events
listed under "OUTPUT".

WWW:	http://search.cpan.org/dist/POE-Component-Hailo/

PR:		ports/159295
Submitted by:	milki <milki@rescomp.berkeley.edu>
2011-08-14 16:21:30 +00:00

16 lines
379 B
Perl

--- Makefile.PL.new 2011-07-29 07:05:19.000000000 -0700
+++ Makefile.PL 2011-07-29 07:06:44.000000000 -0700
@@ -48,5 +48,12 @@
WriteMakefile(%WriteMakefileArgs);
+package MY;
-
+sub init_PM {
+ my $self = shift;
+ $self->SUPER::init_PM(@_);
+ # Do not install the README and README.pod
+ delete $self->{PM}{"README.pod"};
+ delete $self->{PM}{"README"};
+}