mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
a0bcd2cf68
PR: 213195 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D8093
32 lines
782 B
Makefile
32 lines
782 B
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mod_webauth
|
|
PORTVERSION= 4.7.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://webauth.stanford.edu/dist/
|
|
DISTNAME= webauth-${PORTVERSION}
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= Apache module for authenticating users with Kerberos v5
|
|
|
|
LIB_DEPENDS= libcurl.so:ftp/curl \
|
|
libsasl2.so:security/cyrus-sasl2
|
|
|
|
USES= libtool pathfix pkgconfig ssl
|
|
USE_APACHE= 22+
|
|
USE_OPENLDAP= yes
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-ldap-lib=${LOCALBASE}/lib \
|
|
--with-ldap-include=${LOCALBASE}/include \
|
|
--with-openssl=${OPENSSLBASE}
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/typedef int sig_atomic_t/d' \
|
|
${WRKSRC}/portable/system.h
|
|
|
|
.include <bsd.port.mk>
|