diff options
author | leeym <leeym@FreeBSD.org> | 2004-08-05 01:10:27 +0000 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2004-08-05 01:10:27 +0000 |
commit | c496e0901848f2ab002ebfa8e8b333dc100747fc (patch) | |
tree | d4b47cbe93f01e6c2e96e8e3752cebfc251776c4 /textproc/p5-podlators | |
parent | 1eddd1c08614f8fd1c79241c6bf6546cfbb6b51f (diff) | |
download | FreeBSD-ports-c496e0901848f2ab002ebfa8e8b333dc100747fc.zip FreeBSD-ports-c496e0901848f2ab002ebfa8e8b333dc100747fc.tar.gz |
- p5-podlators and p5-PodParser conflict with perl 5.6 or above.
They should be conditional dependency when PERL_LEVEL < 500601.
- add "CONFLICTS= perl-5.6.* perl-5.8.*" in p5-podlators and p5-PodParser
PR: 68086
Submitted by: leeym
Approved by: maintainer timeout
Diffstat (limited to 'textproc/p5-podlators')
-rw-r--r-- | textproc/p5-podlators/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/textproc/p5-podlators/Makefile b/textproc/p5-podlators/Makefile index e6b80d5..11758ac 100644 --- a/textproc/p5-podlators/Makefile +++ b/textproc/p5-podlators/Makefile @@ -7,6 +7,7 @@ PORTNAME= podlators PORTVERSION= 1.27 +PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Pod @@ -15,9 +16,6 @@ PKGNAMEPREFIX= p5- MAINTAINER= skv@FreeBSD.org COMMENT= Modules to convert and parse POD (Plain Old Documentation) -RUN_DEPENDS= ${SITE_PERL}/Pod/Parser.pm:${PORTSDIR}/textproc/p5-PodParser -BUILD_DEPENDS= ${RUN_DEPENDS} - PERL_CONFIGURE= yes CONFIGURE_ARGS= INSTALLDIRS=site @@ -25,10 +23,13 @@ MAN1= pod2man.1 pod2text.1 MAN3= Pod::Man.3 Pod::ParseLink.3 Pod::Text.3 Pod::Text::Color.3 \ Pod::Text::Overstrike.3 Pod::Text::Termcap.3 +CONFLICTS= perl-5.6.* perl-5.8.* + .include <bsd.port.pre.mk> .if ${PERL_LEVEL} < 500601 RUN_DEPENDS+= ${SITE_PERL}/File/Spec.pm:${PORTSDIR}/devel/p5-File-Spec \ + ${SITE_PERL}/Pod/Parser.pm:${PORTSDIR}/textproc/p5-PodParser \ ${SITE_PERL}/Term/ANSIColor.pm:${PORTSDIR}/devel/p5-Term-ANSIColor .endif |