mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
173c53f8e7
- Register dependencies correctly - Bump PORTREVISION PR: ports/149370 Submitted by: Benjamin Lee <ben@b1c1l1.com> With Hat: apache@
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# New ports collection makefile for: mod_auth_kerb
|
|
# Date created: 19 October 2001
|
|
# Whom: wollman
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
|
|
# Shamelessly stolen from will's mod_auth_any port.
|
|
|
|
PORTNAME= mod_auth_kerb
|
|
PORTVERSION= 5.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/modauthkerb/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= An Apache module for authenticating users with Kerberos v5
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
LATEST_LINK= mod_auth_kerb2
|
|
|
|
USE_APACHE= 2.0+
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTSCOUT= limit:^5.3
|
|
|
|
.if defined(KRB5_HOME)
|
|
BUILD_DEPENDS+= ${KRB5_HOME}/lib/libgssapi_krb5.so:${PORTSDIR}/security/krb5
|
|
RUN_DEPENDS+= ${KRB5_HOME}/lib/libgssapi_krb5.so:${PORTSDIR}/security/krb5
|
|
CONFIGURE_ARGS+= --with-krb5=${KRB5_HOME} --without-krb4
|
|
.elif defined(HEIMDAL_HOME)
|
|
BUILD_DEPENDS+= ${HEIMDAL_HOME}/lib/libgssapi.so:${PORTSDIR}/security/heimdal
|
|
RUN_DEPENDS+= ${HEIMDAL_HOME}/lib/libgssapi.so:${PORTSDIR}/security/heimdal
|
|
CONFIGURE_ARGS+= --with-krb5=${HEIMDAL_HOME} --without-krb4
|
|
.elif exists(${DESTDIR}/usr/lib/libkrb5.a) && exists(${DESTDIR}/usr/bin/krb5-config)
|
|
CONFIGURE_ARGS+= --with-krb5=${DESTDIR}/usr --without-krb4
|
|
.else
|
|
LIB_DEPENDS+= gssapi_krb5:${PORTSDIR}/security/krb5
|
|
CONFIGURE_ARGS+= --with-krb5=${LOCALBASE} --without-krb4
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|