summaryrefslogtreecommitdiff
path: root/chat/xchat/options.mk
diff options
context:
space:
mode:
authortron <tron>2005-06-06 11:35:39 +0000
committertron <tron>2005-06-06 11:35:39 +0000
commita155dbe2c3e0382f56777e286d5d605168efa7b7 (patch)
tree9b1d1a1df33030c75a7afe0664d77a53f36368cc /chat/xchat/options.mk
parent1eda200ce322a0e4834e3ac8f6a8149a6c89d9d7 (diff)
downloadpkgsrc-a155dbe2c3e0382f56777e286d5d605168efa7b7.tar.gz
Replace the outdated "xchat" package (version 1.8.11) with the
"xchat2" package (version 2.4.3).
Diffstat (limited to 'chat/xchat/options.mk')
-rw-r--r--chat/xchat/options.mk29
1 files changed, 20 insertions, 9 deletions
diff --git a/chat/xchat/options.mk b/chat/xchat/options.mk
index 19304984fbf..0278ba349a3 100644
--- a/chat/xchat/options.mk
+++ b/chat/xchat/options.mk
@@ -1,21 +1,32 @@
-# $NetBSD: options.mk,v 1.1 2005/06/02 21:48:42 wiz Exp $
+# $NetBSD: options.mk,v 1.2 2005/06/06 11:35:39 tron Exp $
-PKG_OPTIONS_VAR= PKG_OPTIONS.xchat
-PKG_SUPPORTED_OPTIONS= inet6 socks5 ssl
+PKG_OPTIONS_VAR= PKG_OPTIONS.xchat2
+PKG_SUPPORTED_OPTIONS= inet6 ssl socks5
PKG_SUGGESTED_OPTIONS= ssl
-PKG_OPTIONS_LEGACY_VARS+= XCHAT_USE_SSL:ssl
+PKG_OPTIONS_LEGACY_OPTS+= socks:socks5
.include "../../mk/bsd.options.mk"
-.if !empty(PKG_OPTIONS:Minet6)
-CONFIGURE_ARGS+= --enable-ipv6
-.endif
-
+###
+### Use OpenSSL libraries for connecting to ircs servers
+###
.if !empty(PKG_OPTIONS:Mssl)
-. include "../../security/openssl/buildlink3.mk"
+. include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --enable-openssl=${SSLBASE}
+.else
+CONFIGURE_ARGS+= --enable-openssl=no
.endif
+###
+### Support for connecting thru SOCKS servers
+###
.if !empty(PKG_OPTIONS:Msocks5)
CONFIGURE_ARGS+= --enable-socks
.endif
+
+###
+### IPv6 support.
+###
+.if !empty(PKG_OPTIONS:Minet6)
+CONFIGURE_ARGS+= --enable-ipv6
+.endif