summaryrefslogtreecommitdiff
path: root/irc/epic5
diff options
context:
space:
mode:
authorSam Lawrance <lawrance@FreeBSD.org>2005-09-09 05:01:08 +0000
committerSam Lawrance <lawrance@FreeBSD.org>2005-09-09 05:01:08 +0000
commitde37893634a179fdfa2e5b3d1d08dd3317430daf (patch)
tree6d0e9d9dcaf6758dee0c502f247f13de1ce7154d /irc/epic5
parentRemove distinfo which is now stored in the slave port. (diff)
- Remove WITH_SOCKS5 option which never worked
- Make the tcl option on by default (the knob is now WITHOUT_TCL) - Bump PORTREVISION for the above change PR: ports/84440 Submitted by: Josh Paetzel <josh@tcbug.org> (maintainer)
Notes
Notes: svn path=/head/; revision=142264
Diffstat (limited to 'irc/epic5')
-rw-r--r--irc/epic5/Makefile14
1 files changed, 5 insertions, 9 deletions
diff --git a/irc/epic5/Makefile b/irc/epic5/Makefile
index 0b8fd41cf15e..177943c15c7c 100644
--- a/irc/epic5/Makefile
+++ b/irc/epic5/Makefile
@@ -7,6 +7,7 @@
PORTNAME= epic5
PORTVERSION= 0.0.5
+PORTREVISION= 1
CATEGORIES= irc ipv6
MASTER_SITES= http://www.tcbug.org/ \
ftp://ftp.epicsol.org/pub/epic/EPIC5-BETA/
@@ -28,18 +29,13 @@ USE_OPENSSL= yes
CONFIGURE_ARGS+= --without-ipv6
.endif
-## WITH_TCL: enable Tcl support
+## WITHOUT_TCL: disable Tcl support
#
-.if defined(WITH_TCL)
+.if !defined(WITHOUT_TCL)
LIB_DEPENDS+= tcl84:${PORTSDIR}/lang/tcl84
CONFIGURE_ARGS+= --with-tcl
-.endif
-
-## WITH_SOCKS5: enable SOCKS5 support
-#
-.if defined(WITH_SOCKS5)
-LIB_DEPENDS+= socks5:${PORTSDIR}/net/socks5
-CONFIGURE_ARGS+= --with-socks5
+.else
+CONFIGURE_ARGS+= --without-tcl
.endif
## WITH_PERL: enable perl5 support (requires perl 5.6.1 or newer)