ebd0a70cda
and update maintainers email address where there feedback & ok bluhm@ (MAINTAINER)
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.3 2007/07/26 18:30:31 simon Exp $
|
|
|
|
COMMENT= Perl interface to Radius
|
|
|
|
MODULES= cpan
|
|
DISTNAME= Net-Radius-1.56
|
|
CATEGORIES= net devel
|
|
|
|
MAINTAINER= Alexander Bluhm <bluhm@openbsd.org>
|
|
|
|
# perl artistic license
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
REGRESS_DEPENDS=::devel/p5-Test-Warn
|
|
|
|
DATADIR= ${PREFIX}/share/p5-Net-Radius
|
|
DOCDIR= ${PREFIX}/share/doc/p5-Net-Radius
|
|
DOCS= README README.3COM README.VSA \
|
|
README.broken README.packets README.server
|
|
EXDIR= ${PREFIX}/share/examples/p5-Net-Radius
|
|
EXAMPLES= example-client.pl example-menu.pl example-unix.pl \
|
|
example-yes.pl radius2ldap.pl tutorial.pl
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/dicts/dictionary ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/dicts/dictionary.3com ${DATADIR}
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
.for file in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCDIR}
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${EXDIR}
|
|
.for file in ${EXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/${file} ${EXDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|