mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
be916c23ea
UDP transport, also supports TLS (RadSec), as well as RADIUS over TCP and DTLS. The aim is for the proxy to have sufficient features to be flexible, while at the same time to be small, efficient and easy to configure. WWW: http://software.uninett.no/radsecproxy/ PR: ports/147943 Submitted by: Honza Betik <honza@betik.cz> Approved by: bapt (mentor)
32 lines
944 B
Makefile
32 lines
944 B
Makefile
# New ports collection makefile for: radsecproxy
|
|
# Date created: 2011-10-25
|
|
# Whom: Honza Betik
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= radsecproxy
|
|
PORTVERSION= 1.4.2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://software.uninett.no/radsecproxy/
|
|
|
|
MAINTAINER= m.tsatsenko@gmail.com
|
|
COMMENT= Radsecproxy is a generic RADIUS proxy
|
|
|
|
LICENSE= GPLv2 BSD
|
|
LICENSE_COMB= dual
|
|
|
|
MAN1= radsecproxy.1
|
|
MAN5= radsecproxy.conf.5
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/radsecproxy ${PREFIX}/bin/catgconf
|
|
${INSTALL_PROGRAM} ${WRKSRC}/radsecproxy ${PREFIX}/sbin/radsecproxy
|
|
${INSTALL_DATA} ${WRKSRC}/radsecproxy.conf-example ${PREFIX}/etc/radsecproxy.conf-example
|
|
${INSTALL_MAN} ${WRKSRC}/radsecproxy.1 ${PREFIX}/man/man1/radsecproxy.1
|
|
${INSTALL_MAN} ${WRKSRC}/radsecproxy.conf.5 ${PREFIX}/man/man5/radsecproxy.conf.5
|
|
${INSTALL_DATA} ${WRKSRC}/radsecproxy.conf-example ${PREFIX}/etc/radsecproxy.conf-example
|
|
.include <bsd.port.mk>
|