diff options
author | clsung <clsung@FreeBSD.org> | 2005-04-13 12:32:14 +0000 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2005-04-13 12:32:14 +0000 |
commit | a5af81e31a3941316f6390c496f62942a3d3485d (patch) | |
tree | f599ab98cf818532375176584f937b29f310c8bb /lang/pugs | |
parent | dde0d18a8c867e135daa9dc7757bf1dba308105c (diff) | |
download | FreeBSD-ports-a5af81e31a3941316f6390c496f62942a3d3485d.zip FreeBSD-ports-a5af81e31a3941316f6390c496f62942a3d3485d.tar.gz |
- update to 6.2.0
- Changes see
[ url: http://search.cpan.org/src/AUTRIJUS/Perl6-Pugs-6.2.0/ChangeLog ]
Diffstat (limited to 'lang/pugs')
-rw-r--r-- | lang/pugs/Makefile | 7 | ||||
-rw-r--r-- | lang/pugs/distinfo | 4 | ||||
-rw-r--r-- | lang/pugs/files/patch-inc-Module-Install-Pugs.pm | 13 |
3 files changed, 16 insertions, 8 deletions
diff --git a/lang/pugs/Makefile b/lang/pugs/Makefile index 37204ee..eb72cb3 100644 --- a/lang/pugs/Makefile +++ b/lang/pugs/Makefile @@ -6,7 +6,7 @@ # PORTNAME= pugs -PORTVERSION= 6.0.14 +PORTVERSION= 6.2.0 CATEGORIES= lang devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= ../../authors/id/A/AU/AUTRIJUS @@ -31,11 +31,6 @@ post-configure: -e '/^INSTALLARCHLIB/s,${PREFIX}/lib,${PREFIX}/lib/perl6/mach,' \ ${WRKSRC}/Makefile -# we don't want HTTP::Headers.3 LWP::Simple.3 -post-patch: - @${REINPLACE_CMD} -e 's#blib6/man3$$#/dev/null#' \ - ${WRKSRC}/Makefile.PL - .if !defined(NOPORTDOCS) EXDIR= ${WRKSRC}/examples post-install: diff --git a/lang/pugs/distinfo b/lang/pugs/distinfo index 3ef5457..65ed072 100644 --- a/lang/pugs/distinfo +++ b/lang/pugs/distinfo @@ -1,2 +1,2 @@ -MD5 (Perl6-Pugs-6.0.14.tar.gz) = 7b59e0e2ecf7bac7ea5e9f4e61e30633 -SIZE (Perl6-Pugs-6.0.14.tar.gz) = 590415 +MD5 (Perl6-Pugs-6.2.0.tar.gz) = 8d5438d49db872ffe2394fd4995d335b +SIZE (Perl6-Pugs-6.2.0.tar.gz) = 642482 diff --git a/lang/pugs/files/patch-inc-Module-Install-Pugs.pm b/lang/pugs/files/patch-inc-Module-Install-Pugs.pm new file mode 100644 index 0000000..82f2f03 --- /dev/null +++ b/lang/pugs/files/patch-inc-Module-Install-Pugs.pm @@ -0,0 +1,13 @@ +--- inc/Module/Install/Pugs.pm (revision 12842) ++++ inc/Module/Install/Pugs.pm (local) +@@ -75,8 +75,8 @@ + File::Spec->catfile($path, "man1"); + $self->makemaker_args->{INST_MAN3DIR} = + File::Spec->catfile($path, "man3"); +- $self->makemaker_args->{MAN1PODS} = {}; +- $self->makemaker_args->{MAN3PODS} = {}; ++ $self->makemaker_args->{MAN1PODS} = {} if $perl_version == 6; ++ $self->makemaker_args->{MAN3PODS} = {} if $perl_version == 6; + $self->{MM}{INST_AUTODIR} = '$(INST_LIB)/$(BASEEXT)'; + $self->{MM}{INST_ARCHAUTODIR} = '$(INST_ARCHLIB)/$(FULLEXT)'; + } |