f899c758a6
everything at once. Sometime, rename post-install into a options helper target. I did not fix ports that were such a mess that I could not figure out what they really wanted to do. I also did not change ports that had some version of an auto-plist code in post-install, for the same reason. With hat: portmgr Sponsored by: Absolight
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
# Created by: Mikhail T. <m.tsatsenko@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= openvpn-auth-radius
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 3
|
|
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
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/sbin/openvpn:security/openvpn
|
|
LIB_DEPENDS= libgcrypt.so:security/libgcrypt
|
|
|
|
USES= gmake
|
|
MAKEFILE= Makefile.bsd
|
|
WRKSRC= ${WRKDIR}/radiusplugin
|
|
|
|
PORTDOCS= README
|
|
PORTEXAMPLES= radiusplugin.cnf
|
|
PLIST_FILES= lib/radiusplugin.so
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
${INSTALL_LIB} ${WRKSRC}/radiusplugin.so ${STAGEDIR}${LOCALBASE}/lib
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
post-install-EXAMPLES-on:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/radiusplugin.cnf ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.post.mk>
|