summaryrefslogtreecommitdiff
path: root/news/suck
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2015-09-30 08:25:37 +0000
committertnn <tnn@pkgsrc.org>2015-09-30 08:25:37 +0000
commit1998d381ca6ba6f6124d25811b1bea38c283b176 (patch)
tree15f2e52cbc0823f38bb1aa505121cecf6db6165b /news/suck
parent17de9e488491a066fda981cece1574a0a83afbf5 (diff)
downloadpkgsrc-1998d381ca6ba6f6124d25811b1bea38c283b176.tar.gz
replace optional socks5 dependencies with net/dante
Diffstat (limited to 'news/suck')
-rw-r--r--news/suck/options.mk10
1 files changed, 6 insertions, 4 deletions
diff --git a/news/suck/options.mk b/news/suck/options.mk
index ffd6c7087ba..56b20b48283 100644
--- a/news/suck/options.mk
+++ b/news/suck/options.mk
@@ -1,13 +1,15 @@
-# $NetBSD: options.mk,v 1.1 2005/12/02 17:04:35 wiz Exp $
+# $NetBSD: options.mk,v 1.2 2015/09/30 08:25:37 tnn Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.suck
PKG_OPTIONS_OPTIONAL_GROUPS+= socks
-PKG_OPTIONS_GROUP.socks= socks4 socks5
+PKG_OPTIONS_GROUP.socks= socks4 dante
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Msocks4)
.include "../../net/socks4/buildlink3.mk"
-.elif !empty(PKG_OPTIONS:Msocks5)
-.include "../../net/socks5/buildlink3.mk"
+.elif !empty(PKG_OPTIONS:Mdante)
+CFLAGS+= -I${BUILDLINK_PREFIX.dante}/include/dante
+CPPFLAGS+= -I${BUILDLINK_PREFIX.dante}/include/dante
+.include "../../net/dante/buildlink3.mk"
.endif