freebsd-ports/net-mgmt/p5-Net-ILO/files/patch-Makefile.PL
Frederic Culot 97032579e0 The Net::ILO module is an interface to a subset of Hewlett-Packards
Integrated Lights-Out out-of-band management system.
HP's API is XML-based and cumbersome to use; this module aims to
simplify accessing the iLO from Perl while retaining as much
functionality as possible.

WWW: http://search.cpan.org/dist/Net-ILO/

PR:		ports/166615
Submitted by:	Tsung-Han Yeh <snowfly@yuntech.edu.tw>
Feature safe:	yes
2012-04-07 07:22:35 +00:00

17 lines
417 B
Perl

--- Makefile.PL.orig 2012-04-06 04:48:50.000000000 -0400
+++ Makefile.PL 2012-04-06 04:51:58.000000000 -0400
@@ -16,3 +16,14 @@
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-ILO-*' },
);
+
+package MY;
+
+sub init_PM {
+ my $self = shift;
+
+ $self->SUPER::init_PM(@_);
+
+ # Do not install README.pod
+ delete $self->{PM}{"README.pod"};
+}