31ce752870
radsecproxy is a generic RADIUS proxy that supports both UDP and TLS (RadSec) RADIUS transports. There is also experimental support for TCP and DTLS.
26 lines
687 B
Makefile
26 lines
687 B
Makefile
# $NetBSD: Makefile,v 1.1 2015/01/20 08:17:09 he Exp $
|
|
|
|
DISTNAME= radsecproxy-1.6.6
|
|
CATEGORIES= net
|
|
MASTER_SITES= https://software.uninett.no/radsecproxy/
|
|
|
|
MAINTAINER= he@NetBSD.org
|
|
COMMENT= Secure radius proxy
|
|
HOMEPAGE= https://software.uninett.no/radsecproxy/
|
|
EXTRACT_SUFX= .tar.xz
|
|
LICENSE= gnu-gpl-v2 OR modified-bsd
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR:Q}
|
|
|
|
EGDIR= ${PREFIX}/share/examples/radsecproxy
|
|
INSTALLATION_DIRS+= ${EGDIR}
|
|
|
|
CONF= radsecproxy.conf
|
|
CONF_FILES+= ${EGDIR}/${CONF} ${PKG_SYSCONFDIR}/${CONF}
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/radsecproxy.conf-example \
|
|
${DESTDIR}${EGDIR}/${CONF}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|