mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 11:56:28 -04:00
Make workaround for bug in ExtUtils::MM_Unix on perl 5.00503
This commit is contained in:
parent
a8ffa6f856
commit
c853a41263
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=82708
2 changed files with 19 additions and 1 deletions
|
@ -29,4 +29,10 @@ MAN3= Data::Serializer.3 Data::Serializer::Config::General.3 \
|
|||
Data::Serializer::Data::Dumper.3 Data::Serializer::FreezeThaw.3 \
|
||||
Data::Serializer::Storable.3 Data::Serializer::YAML.3
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PERL_LEVEL} < 500600
|
||||
EXTRA_PATCHES= ${PATCHDIR}/500503-Makefile.PL
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
12
devel/p5-Data-Serializer/files/500503-Makefile.PL
Normal file
12
devel/p5-Data-Serializer/files/500503-Makefile.PL
Normal file
|
@ -0,0 +1,12 @@
|
|||
--- Makefile.PL.orig Tue Jun 10 21:30:54 2003
|
||||
+++ Makefile.PL Tue Jun 10 21:49:49 2003
|
||||
@@ -15,3 +15,9 @@
|
||||
'ZIP'=>'/usr/bin/zip','ZIPFLAGS'=>'-rl'}
|
||||
|
||||
);
|
||||
+
|
||||
+sub MY::manifypods {
|
||||
+ package MY; my $self=shift;
|
||||
+ $self->{MAN3PODS}->{'lib/Data/Serializer/Config/General.pm'}='$(INST_MAN3DIR)/Data::Serializer::Config::General.$(MAN3EXT)';
|
||||
+ $self->SUPER::manifypods(@_);
|
||||
+}
|
Loading…
Add table
Reference in a new issue