blob: a78faa787016bf145471f107a91d537b2d1744b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# New ports collection makefile for: security/openvpn-auth-radius
# Date created: 2011-03-04
# Whom: Mikhail T. <m.tsatsenko@gmail.com>
#
# $FreeBSD$
#
PORTNAME= openvpn-auth-radius
PORTVERSION= 2.1
CATEGORIES= security
MASTER_SITES= http://www.nongnu.org/radiusplugin/ \
http://svn-cache.ipcopaddons.org/
DISTNAME= radiusplugin_v${PORTVERSION}
MAINTAINER= m.tsatsenko@gmail.com
COMMENT= RADIUS authentication plugin for OpenVPN
RUN_DEPENDS= openvpn:${PORTSDIR}/security/openvpn
LIB_DEPENDS= gcrypt.18:${PORTSDIR}/security/libgcrypt
LICENCE= GPLv2
USE_GMAKE= yes
MAKEFILE= Makefile.bsd
WRKSRC= ${WRKDIR}/radiusplugin
PORTDOCS= README
PORTEXAMPLES= radiusplugin.cnf
PLIST_FILES= lib/radiusplugin.so
.include <bsd.port.pre.mk>
do-install:
${INSTALL_LIB} ${WRKSRC}/radiusplugin.so ${LOCALBASE}/lib
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/radiusplugin.cnf ${EXAMPLESDIR}
.endif
.include <bsd.port.post.mk>
|