diff options
author | lawrance <lawrance@FreeBSD.org> | 2006-02-11 10:35:18 +0800 |
---|---|---|
committer | lawrance <lawrance@FreeBSD.org> | 2006-02-11 10:35:18 +0800 |
commit | 6270a75a38e756ad83d5958c9c25251914cf2bb7 (patch) | |
tree | ab28ba551d0009eb87c2cd824a1c40db3ceb6910 | |
parent | a9925f515c701faf77357c45beb03ccf1c1e23ed (diff) | |
download | freebsd-ports-gnome-6270a75a38e756ad83d5958c9c25251914cf2bb7.tar.gz freebsd-ports-gnome-6270a75a38e756ad83d5958c9c25251914cf2bb7.tar.zst freebsd-ports-gnome-6270a75a38e756ad83d5958c9c25251914cf2bb7.zip |
Convert to OPTIONS framework.
Fix misformatted IGNORE message.
Tighten up CONFLICTS.
PR: ports/92925
Submitted by: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com>
Approved by: Josh Paetzel <josh@tcbug.org> (maintainer)
-rw-r--r-- | irc/epic4/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/irc/epic4/Makefile b/irc/epic4/Makefile index fe56408aa0c9..6761d32bb3a2 100644 --- a/irc/epic4/Makefile +++ b/irc/epic4/Makefile @@ -21,12 +21,16 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ MAINTAINER= josh@tcbug.org COMMENT= The (E)nhanced (P)rogrammable (I)RC-II (C)lient -CONFLICTS= epic5-* +CONFLICTS= epic5-[0-9]* GNU_CONFIGURE= yes MAN1= epic.1 USE_OPENSSL= yes +OPTIONS= IPV6 "IPv6 support" on \ + TCL "TCL support" on \ + PERL "Perl scripting support" off + .include <bsd.port.pre.mk> ## WITHOUT_IPV6: disable IPv6 support @@ -51,7 +55,7 @@ CONFIGURE_ARGS+= --with-tcl # .if defined(WITH_PERL) .if ${PERL_LEVEL} < 500601 -IGNORE= "Perl 5.6.1 or newer is required; we recommend perl 5.8.5" +IGNORE= requires perl 5.6.1 or newer; we recommend perl 5.8.5 .endif USE_PERL5= yes CONFIGURE_ARGS+= --with-perl=${SITE_PERL}/../../${PERL_VER}/mach/CORE |