pkgsrc/net/freeDiameter/Makefile
wiz a3cdc80a4c freeDiameter: update to 1.4.0.
freediameter (1.4.0) RELEASED; urgency=low

  * New API: fd_fifo_set_max to change the capacity of a queue.
  * New configuration stanza for Relays: ProcessingPeersPattern and ProcessingPeersMinimum
  * New configuration stanza for scalability: RoutingInThreads and RoutingOutThreads
  * some coding style cleanups
  * Improvements on rt_load_balance algorithm
  * Improvements on logging & locking behaviors
  * More tolerant to invalid messages and answers.
  * Improvements on shutdown behaviors.
  * test_ccload: new extension: generates random
    Credit-Control-Requests and counts how many are answered/give an
    error/get no answer. Start it with SIGUSR2, stop it with a second
    SIGUSR2. Statistics are printed on exit.
  * test_cc: new extension. Automatically replies to
    Credit-Control-Requests. Copies minimally necessary data from
    the Request.
  * Fixed testcnx failing due to expired CA certificate
2020-04-28 16:56:31 +00:00

40 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.22 2020/04/28 16:56:31 wiz Exp $
DISTNAME= 1.4.0
PKGNAME= freeDiameter-${DISTNAME}
CATEGORIES= net
MASTER_SITES= http://www.freediameter.net/hg/freeDiameter/archive/
DIST_SUBDIR= freeDiameter
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.freediameter.net/trac/
COMMENT= Open source Diameter protocol implementation
LICENSE= modified-bsd
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
USE_CMAKE= yes
CMAKE_ARGS+= -DDISABLE_SCTP:BOOL=ON
USE_LANGUAGES= c c++
USE_TOOLS+= bison flex pkg-config
FLEX_REQD= 2.5.35
LDFLAGS.SunOS+= -lsocket -lnsl
# needs libraries installed
#TEST_TARGET= test
.include "options.mk"
INSTALLATION_DIRS= share/examples/freeDiameter/single_host
post-install:
cd ${WRKSRC}/doc && ${INSTALL_DATA} *.* \
${DESTDIR}${PREFIX}/share/examples/freeDiameter
cd ${WRKSRC}/doc/single_host && ${INSTALL_DATA} *.* \
${DESTDIR}${PREFIX}/share/examples/freeDiameter/single_host
.include "../../devel/libidn/buildlink3.mk"
.include "../../security/gnutls/buildlink3.mk"
.include "../../security/libgcrypt/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"