diff options
author | leeym <leeym@FreeBSD.org> | 2005-07-26 19:11:04 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2005-07-26 19:11:04 +0800 |
commit | 62c7f7b88603c23666e29e6cf509b1d4ee0a5aa6 (patch) | |
tree | b4cfb09ba851a5807bdb03ad779cc3c1a0d9de56 | |
parent | 77a1b973a8a23b0d286e373325bf14ba5cb1a29d (diff) | |
download | freebsd-ports-graphics-62c7f7b88603c23666e29e6cf509b1d4ee0a5aa6.tar.gz freebsd-ports-graphics-62c7f7b88603c23666e29e6cf509b1d4ee0a5aa6.tar.zst freebsd-ports-graphics-62c7f7b88603c23666e29e6cf509b1d4ee0a5aa6.zip |
- fix the missing $VERSION problem introduced in previous commit
- bump PORTREVISION
-rw-r--r-- | math/p5-Set-IntSpan/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/math/p5-Set-IntSpan/Makefile b/math/p5-Set-IntSpan/Makefile index 3764a727a44..1583380ddf7 100644 --- a/math/p5-Set-IntSpan/Makefile +++ b/math/p5-Set-IntSpan/Makefile @@ -7,6 +7,7 @@ PORTNAME= Set-IntSpan PORTVERSION= 1.08 +PORTREVISION= 1 CATEGORIES= math perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Set @@ -20,6 +21,8 @@ PERL_CONFIGURE= yes MAN3= Set::IntSpan.3 post-patch: - @${REINPLACE_CMD} -e 's|^our|my|g' ${WRKSRC}/IntSpan.pm + @${REINPLACE_CMD} -e 's|^our ||g' ${WRKSRC}/IntSpan.pm +# @${REINPLACE_CMD} -Ee 's/(^use base.*)/\1 use vars qw(@EXPORT_OK $$VERSION);/' \ +# ${WRKSRC}/IntSpan.pm .include <bsd.port.mk> |