4b294f7900
security - fix an invalid #endif while i'm here - bump pkgname ok pvalchev@
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.12 2005/01/14 17:33:17 jcs Exp $
|
|
|
|
# This port currently only works with archs supporting dynamic loading
|
|
# and has Apache that supports DSO's.
|
|
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
|
|
|
|
DISTNAME= mod_auth_radius-1.5.7
|
|
PKGNAME= ${DISTNAME}p0
|
|
CATEGORIES= www
|
|
|
|
# Apache
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
COMMENT= "Apache RADIUS authentication module"
|
|
HOMEPAGE= http://www.freeradius.org/mod_auth_radius/
|
|
MASTER_SITES= ftp://ftp.freeradius.org/pub/radius/
|
|
EXTRACT_SUFX= .tar
|
|
|
|
MAINTAINER= joshua stein <jcs@openbsd.org>
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
WRKDIST= ${WRKDIR}/${DISTNAME}
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}; /usr/sbin/apxs -c mod_auth_radius.c
|
|
@sed 's,!!PREFIX!!,${PREFIX},' \
|
|
< ${FILESDIR}/mod_auth_radius-enable \
|
|
> ${WRKBUILD}/mod_auth_radius-enable
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mod_auth_radius
|
|
${INSTALL_DATA} ${WRKSRC}/mod_auth_radius.so ${PREFIX}/lib
|
|
${INSTALL_SCRIPT} ${WRKBUILD}/mod_auth_radius-enable ${PREFIX}/sbin
|
|
${INSTALL_DATA} ${WRKSRC}/httpd.conf \
|
|
${PREFIX}/share/examples/mod_auth_radius/httpd.conf-example
|
|
${INSTALL_DATA} ${WRKSRC}/htaccess \
|
|
${PREFIX}/share/examples/mod_auth_radius/htaccess-example
|
|
|
|
.include <bsd.port.mk>
|