1a77331df1
fixes some nasty server linking bugs that would cause silcd to crash
71 lines
2.0 KiB
Makefile
71 lines
2.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.15 2004/03/03 18:17:13 brad Exp $
|
|
|
|
.if ${MACHINE_ARCH} == "powerpc"
|
|
BROKEN= "config file parser bug on ${MACHINE_ARCH}"
|
|
.endif
|
|
|
|
COMMENT= "Secure Internet Live Conferencing (SILC) server"
|
|
|
|
DISTNAME= silc-server-0.9.18
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://www.silcnet.org/
|
|
|
|
MAINTAINER= Brad Smith <brad@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://ftp.silcnet.org/server/sources/ \
|
|
ftp://ftp.silcnet.org/silc/server/sources/ \
|
|
http://www.planetmirror.com/pub/silcnet/server/sources/ \
|
|
ftp://ftp.au.silcnet.org/pub/silcnet/server/sources/ \
|
|
http://munitions.vipul.net/software/mirrors/silc/server/sources/ \
|
|
ftp://ftp.no.silcnet.org/pub/silc/server/sources/ \
|
|
http://the.wiretapped.net/security/network-security/silc/server/sources/ \
|
|
ftp://ftp.wiretapped.net/pub/security/network-security/silc/server/sources/
|
|
|
|
MODULES= iconv
|
|
|
|
FLAVORS= operops
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Moperops}
|
|
PATCH_LIST+= operops-* patch-*
|
|
.endif
|
|
|
|
CONFDIR= ${SYSCONFDIR}/silcd
|
|
SUBST_VARS= CONFDIR
|
|
|
|
CONFIGURE_STYLE= autoconf
|
|
AUTOCONF_VERSION= 2.58
|
|
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC} ${WRKSRC}/lib/silcmath/mpi
|
|
CONFIGURE_ARGS+= --enable-ipv6 \
|
|
--without-irssi \
|
|
--with-docdir=${PREFIX}/share/doc/silcd \
|
|
--with-etcdir=${CONFDIR} \
|
|
--with-logsdir=/var/log/silcd \
|
|
--with-simdir=${PREFIX}/lib \
|
|
--with-silcd-config-file=${CONFDIR}/silcd.conf \
|
|
--with-silcd-pid-file=/var/run/silcd.pid
|
|
|
|
.if ${MACHINE_ARCH} != "i386"
|
|
CONFIGURE_ARGS+= --disable-asm
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/silcd
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/silcd
|
|
${INSTALL_DATA} ${WRKSRC}/doc/FAQ ${PREFIX}/share/doc/silcd
|
|
${INSTALL_DATA} ${WRKSRC}/doc/example_silcd.conf \
|
|
${PREFIX}/share/examples/silcd/silcd.conf
|
|
${INSTALL_DATA} ${WRKSRC}/doc/examples/cell_*.conf \
|
|
${PREFIX}/share/examples/silcd
|
|
${INSTALL_DATA} ${WRKSRC}/doc/silcalgs.conf \
|
|
${PREFIX}/share/examples/silcd
|
|
|
|
.include <bsd.port.mk>
|