pkgsrc/devel/silc-toolkit/Makefile
salo 21069efaa0 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.
2004-06-06 12:23:17 +00:00

54 lines
1.5 KiB
Makefile

# $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"