summaryrefslogtreecommitdiff
path: root/devel/silc-toolkit/Makefile
diff options
context:
space:
mode:
authorsalo <salo@pkgsrc.org>2004-06-06 12:23:17 +0000
committersalo <salo@pkgsrc.org>2004-06-06 12:23:17 +0000
commit21069efaa0635a3885b8f7c2aef8aa89bd37bb52 (patch)
tree039aab6bdd9158f867c8c8cd95927d0213cc0e8b /devel/silc-toolkit/Makefile
parent896a8f12eeff0679abf99871996e3e8b30ac152b (diff)
downloadpkgsrc-21069efaa0635a3885b8f7c2aef8aa89bd37bb52.tar.gz
Initial import of silc-toolkit-0.9.12: Secure Internet Live Conferencing
(SILC) protocol Toolkit. SILC (Secure Internet Live Conferencing) is a protocol which provides secure conferencing services in the Internet over insecure channel. SILC superficially resembles IRC, although they are very different internally. SILC is much more than just about `encrypting the traffic'. That is easy enough to do with IRC and SSL hybrids, but even then the entire network cannot be secured, only part of it. SILC provides security services, such as sending private messages entirely secure; noone can see the message except you and the real receiver of the message. SILC also provides same functionality for channels; noone except those clients joined to the channel may see the messages destined to the channel. Communication between client and server is also secured with session keys and all commands, authentication data (such as passwords etc.) and other traffic is entirely secured. The entire network, and all parts of it, is secured. SILC has secure key exchange protocol that is used to create the session keys for each connection. SILC also provides strong authentication based on either passwords or public key authentication. All authentication data is always encrypted in the SILC network. Each connection has their own session keys, all channels have channel specific keys, and all private messages can be secured with private message specific keys.
Diffstat (limited to 'devel/silc-toolkit/Makefile')
-rw-r--r--devel/silc-toolkit/Makefile54
1 files changed, 54 insertions, 0 deletions
diff --git a/devel/silc-toolkit/Makefile b/devel/silc-toolkit/Makefile
new file mode 100644
index 00000000000..e98bf312e92
--- /dev/null
+++ b/devel/silc-toolkit/Makefile
@@ -0,0 +1,54 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/06/06 12:23:17 salo Exp $
+#
+
+DISTNAME= silc-toolkit-0.9.12
+CATEGORIES= devel chat security
+MASTER_SITES= http://www.silcnet.org/download/toolkit/sources/ \
+ ftp://ftp.silcnet.org/silc/toolkit/sources/ \
+ http://www.fi.silcnet.org/download/toolkit/sources/ \
+ ftp://ftp.au.silcnet.org/pub/silcnet/toolkit/sources/ \
+ http://www.at.silcnet.org/download/toolkit/sources/
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= salo@NetBSD.org
+HOMEPAGE= http://www.silcnet.org/
+COMMENT= Secure Internet Live Conferencing (SILC) protocol Toolkit
+
+CONFLICTS+= silc-client<1.0.1nb1
+
+USE_BUILDLINK3= YES
+GNU_CONFIGURE= YES
+USE_LIBTOOL= YES
+LIBTOOL_OVERRIDE= libtool */*/*/libtool
+
+.include "../../mk/bsd.prefs.mk"
+
+CONFIGURE_ARGS+= --includedir=${PREFIX}/include/silc
+CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/silc
+CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/html/silc-toolkit
+CONFIGURE_ARGS+= --with-simdir=${PREFIX}/lib/silc/modules
+CONFIGURE_ARGS+= --without-iconv
+CONFIGURE_ARGS+= --without-irssi
+CONFIGURE_ARGS+= --without-silcd
+CONFIGURE_ARGS+= --without-libtoolfix
+
+# XXX: Avoid an ICE in gcc2 on sparc64
+#
+CONFIGURE_ENV+= F77=${FALSE}
+
+BUILD_DEFS+= USE_INET6
+
+.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss])
+CONFIGURE_ARGS+= --enable-ipv6
+.endif
+
+# If you want to build debugging version of libraries in silc-toolkit,
+# uncomment the line below.
+#
+#CONFIGURE_ARGS+= --enable-debug
+
+.if ${MACHINE_ARCH} != "i386"
+CONFIGURE_ARGS+= --disable-asm
+.endif
+
+.include "../../mk/bsd.pkg.mk"