diff options
-rw-r--r-- | cad/p5-Verilog-Perl/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/cad/p5-Verilog-Perl/Makefile b/cad/p5-Verilog-Perl/Makefile index 4062d1c56b81..820f66679d77 100644 --- a/cad/p5-Verilog-Perl/Makefile +++ b/cad/p5-Verilog-Perl/Makefile @@ -22,8 +22,6 @@ USE_BISON= build PERL_CONFIGURE= yes -BROKEN= Does not compile - MAN1= vhier.1 vpassert.1 vppreproc.1 vrename.1 MAN3= Verilog::EditFiles.3 Verilog::Netlist::Logger.3 \ @@ -34,14 +32,21 @@ MAN3= Verilog::EditFiles.3 Verilog::Netlist::Logger.3 \ Verilog::Netlist::File.3 Verilog::Netlist::Subclass.3 \ Verilog::Verilog-Perl.3 Verilog::Netlist::Interface.3 Verilog::Std.3 +.include <bsd.port.pre.mk> + post-patch: @${REINPLACE_CMD} -e '/EXE_FILES/ s/ vsplitmodule//' \ ${WRKSRC}/Makefile.PL +post-configure: +.if ${OSVERSION} < 700042 + @${REINPLACE_CMD} -e 's|-O2|-O|g' ${WRKSRC}/Makefile +.endif + post-build: cd ${WRKSRC} && make test test: make post-build -.include <bsd.port.mk> +.include <bsd.port.post.mk> |