pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/silc-toolkit Initial import of silc-toolkit-0.9....



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a29e8de53e46
branches:  trunk
changeset: 476303:a29e8de53e46
user:      salo <salo%pkgsrc.org@localhost>
date:      Sun Jun 06 12:23:17 2004 +0000

description:
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:

 devel/silc-toolkit/DESCR            |    23 +
 devel/silc-toolkit/Makefile         |    54 +
 devel/silc-toolkit/PLIST            |  1125 +++++++++++++++++++++++++++++++++++
 devel/silc-toolkit/buildlink3.mk    |    19 +
 devel/silc-toolkit/distinfo         |     5 +
 devel/silc-toolkit/patches/patch-aa |    31 +
 6 files changed, 1257 insertions(+), 0 deletions(-)

diffs (truncated from 1281 to 300 lines):

diff -r e540362aab4e -r a29e8de53e46 devel/silc-toolkit/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/silc-toolkit/DESCR  Sun Jun 06 12:23:17 2004 +0000
@@ -0,0 +1,23 @@
+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.
diff -r e540362aab4e -r a29e8de53e46 devel/silc-toolkit/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/silc-toolkit/Makefile       Sun Jun 06 12:23:17 2004 +0000
@@ -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@localhost
+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"
diff -r e540362aab4e -r a29e8de53e46 devel/silc-toolkit/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/silc-toolkit/PLIST  Sun Jun 06 12:23:17 2004 +0000
@@ -0,0 +1,1125 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/06/06 12:23:23 salo Exp $
+include/silc/aes.h
+include/silc/blowfish.h
+include/silc/cast.h
+include/silc/ciphers.h
+include/silc/ciphers_def.h
+include/silc/client.h
+include/silc/command.h
+include/silc/command_reply.h
+include/silc/getopt.h
+include/silc/idlist.h
+include/silc/md5.h
+include/silc/mp_gmp.h
+include/silc/mp_mpi.h
+include/silc/mpi-config.h
+include/silc/mpi.h
+include/silc/mplogic.h
+include/silc/none.h
+include/silc/protocol.h
+include/silc/rc5.h
+include/silc/regex.h
+include/silc/rsa.h
+include/silc/sha1.h
+include/silc/silcapputil.h
+include/silc/silcargument.h
+include/silc/silcattrs.h
+include/silc/silcauth.h
+include/silc/silcbeos.h
+include/silc/silcbuffer.h
+include/silc/silcbuffmt.h
+include/silc/silcchannel.h
+include/silc/silccipher.h
+include/silc/silcclient.h
+include/silc/silccommand.h
+include/silc/silcconfig.h
+include/silc/silcdh.h
+include/silc/silcdlist.h
+include/silc/silcepoc.h
+include/silc/silcfileutil.h
+include/silc/silchash.h
+include/silc/silchashtable.h
+include/silc/silchmac.h
+include/silc/silcid.h
+include/silc/silcidcache.h
+include/silc/silcincludes.h
+include/silc/silclist.h
+include/silc/silclog.h
+include/silc/silcmath.h
+include/silc/silcmemory.h
+include/silc/silcmessage.h
+include/silc/silcmode.h
+include/silc/silcmp.h
+include/silc/silcmutex.h
+include/silc/silcnet.h
+include/silc/silcnotify.h
+include/silc/silcos2.h
+include/silc/silcpacket.h
+include/silc/silcpkcs.h
+include/silc/silcpkcs1.h
+include/silc/silcprotocol.h
+include/silc/silcrng.h
+include/silc/silcschedule.h
+include/silc/silcsftp.h
+include/silc/silcsftp_fs.h
+include/silc/silcsim.h
+include/silc/silcsimutil.h
+include/silc/silcske.h
+include/silc/silcske_groups.h
+include/silc/silcske_payload.h
+include/silc/silcske_status.h
+include/silc/silcsockconn.h
+include/silc/silcstatus.h
+include/silc/silcstrutil.h
+include/silc/silcthread.h
+include/silc/silctypes.h
+include/silc/silcutil.h
+include/silc/silcvcard.h
+include/silc/silcversion.h
+include/silc/silcwin32.h
+include/silc/stacktrace.h
+include/silc/twofish.h
+include/silc/version_internal.h
+lib/silc/libsilc-1.0.so.3
+lib/silc/libsilc-1.0.so.3.0
+lib/silc/libsilc.a
+lib/silc/libsilc.la
+lib/silc/libsilc.so
+lib/silc/libsilcclient-1.0.so.3
+lib/silc/libsilcclient-1.0.so.3.0
+lib/silc/libsilcclient.a
+lib/silc/libsilcclient.la
+lib/silc/libsilcclient.so
+lib/silc/modules/aes.sim.so
+lib/silc/modules/blowfish.sim.so
+lib/silc/modules/cast.sim.so
+lib/silc/modules/md5.sim.so
+lib/silc/modules/none.sim.so
+lib/silc/modules/rc5.sim.so
+lib/silc/modules/rsa.sim.so
+lib/silc/modules/sha1.sim.so
+lib/silc/modules/twofish.sim.so
+share/doc/html/silc-toolkit/manual/arch.gif
+share/doc/html/silc-toolkit/manual/box.gif
+share/doc/html/silc-toolkit/manual/box2.gif
+share/doc/html/silc-toolkit/manual/building.html
+share/doc/html/silc-toolkit/manual/command_reply_args.html
+share/doc/html/silc-toolkit/manual/dot.gif
+share/doc/html/silc-toolkit/manual/index.html
+share/doc/html/silc-toolkit/manual/index.tmpl
+share/doc/html/silc-toolkit/manual/index_pic.gif
+share/doc/html/silc-toolkit/manual/intro_reference.html
+share/doc/html/silc-toolkit/manual/notifyargs.html
+share/doc/html/silc-toolkit/manual/platforms.html
+share/doc/html/silc-toolkit/manual/programming_conv.html
+share/doc/html/silc-toolkit/manual/silcapputil-silc_change_private_key_passphrase.html
+share/doc/html/silc-toolkit/manual/silcapputil-silc_create_key_pair.html
+share/doc/html/silc-toolkit/manual/silcapputil-silc_load_key_pair.html
+share/doc/html/silc-toolkit/manual/silcapputil-silc_show_public_key.html
+share/doc/html/silc-toolkit/manual/silcapputil.html
+share/doc/html/silc-toolkit/manual/silcapputil.xref
+share/doc/html/silc-toolkit/manual/silcargument-SilcArgumentPayload.html
+share/doc/html/silc-toolkit/manual/silcargument-silc_argument_get_arg_num.html
+share/doc/html/silc-toolkit/manual/silcargument-silc_argument_get_arg_type.html
+share/doc/html/silc-toolkit/manual/silcargument-silc_argument_get_first_arg.html
+share/doc/html/silc-toolkit/manual/silcargument-silc_argument_get_next_arg.html
+share/doc/html/silc-toolkit/manual/silcargument-silc_argument_payload_encode.html
+share/doc/html/silc-toolkit/manual/silcargument-silc_argument_payload_encode_one.html
+share/doc/html/silc-toolkit/manual/silcargument-silc_argument_payload_encode_payload.html
+share/doc/html/silc-toolkit/manual/silcargument-silc_argument_payload_free.html
+share/doc/html/silc-toolkit/manual/silcargument-silc_argument_payload_parse.html
+share/doc/html/silc-toolkit/manual/silcargument.html
+share/doc/html/silc-toolkit/manual/silcargument.xref
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttribute.html
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttributeContact.html
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttributeDevice.html
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttributeFlags.html
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttributeMood.html
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttributeObjDevice.html
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttributeObjGeo.html
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttributeObjMime.html
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttributeObjPk.html
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttributeObjService.html
+share/doc/html/silc-toolkit/manual/silcattrs-SilcAttributePayload.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_get_attribute.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_get_data.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_get_flags.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_get_object.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_get_verify_data.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_payload_alloc.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_payload_encode.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_payload_encode_data.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_payload_free.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_payload_list_free.html
+share/doc/html/silc-toolkit/manual/silcattrs-silc_attribute_payload_parse.html
+share/doc/html/silc-toolkit/manual/silcattrs.html
+share/doc/html/silc-toolkit/manual/silcattrs.xref
+share/doc/html/silc-toolkit/manual/silcauth-SilcAuthMethod.html
+share/doc/html/silc-toolkit/manual/silcauth-SilcAuthPayload.html
+share/doc/html/silc-toolkit/manual/silcauth-SilcKeyAgreementPayload.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_get_data.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_get_method.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_get_public_data.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_payload_encode.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_payload_free.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_payload_parse.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_public_key_auth_generate.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_public_key_auth_generate_wpub.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_public_key_auth_verify.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_public_key_auth_verify_data.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_verify.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_auth_verify_data.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_key_agreement_get_hostname.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_key_agreement_get_port.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_key_agreement_payload_encode.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_key_agreement_payload_free.html
+share/doc/html/silc-toolkit/manual/silcauth-silc_key_agreement_payload_parse.html
+share/doc/html/silc-toolkit/manual/silcauth.html
+share/doc/html/silc-toolkit/manual/silcauth.xref
+share/doc/html/silc-toolkit/manual/silcbuffer-SILC_BUFFER_END.html
+share/doc/html/silc-toolkit/manual/silcbuffer-SilcBuffer.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_alloc.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_alloc_size.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_clear.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_clone.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_copy.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_free.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_pull.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_pull_tail.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_push.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_push_tail.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_put.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_put_head.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_put_tail.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_realloc.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_set.html
+share/doc/html/silc-toolkit/manual/silcbuffer-silc_buffer_steal.html
+share/doc/html/silc-toolkit/manual/silcbuffer.html
+share/doc/html/silc-toolkit/manual/silcbuffer.xref
+share/doc/html/silc-toolkit/manual/silcbuffmt-SILC_STRFMT_END.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-SILC_STR_*_CHAR.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-SILC_STR_*_INT.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-SILC_STR_*_INT64.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-SILC_STR_*_NSTRING.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-SILC_STR_*_SHORT.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-SILC_STR_*_STRING.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-SILC_STR_END.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-SILC_STR_UI_XNSTRING.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-silc_buffer_format.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-silc_buffer_format_vp.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-silc_buffer_strformat.html
+share/doc/html/silc-toolkit/manual/silcbuffmt-silc_buffer_unformat.html



Home | Main Index | Thread Index | Old Index