freebsd-ports/www/mod_auth_kerb2/Makefile
Brian Feldman c8dcc98995 * Allow for compilation to optionally use the MIT Kerberos 5 port like
now, but default to the base system's Heimdal.
* Use existing API to tell Heimdal's libkrb5 where the keytab is, rather
  than exporting an environment variable (which is what must be done for
  MIT's, apparently) -- this unbreak's specification of the keytab
  location in httpd.conf.
* Rewrite the description to be far more accurate: no mention was made
  of this module  doing real SPNEGO/GSSAPI/Kerberos (as opposed to
  "Kerberos password gateway") authentication.
* Bump PORTREVISION.

Approved by:	MAINTAINER
PR:		ports/86963
2005-10-14 22:55:59 +00:00

54 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.0.r6
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=modauthkerb
DISTNAME= mod_auth_kerb-5.0-rc6
MAINTAINER= apache@FreeBSD.org
COMMENT= An Apache module for authenticating users with Kerberos v5
#
# This module allows users to send their Kerberos password in
# plain text; it should only be used over an encrypted connection
# (i.e., HTTP over SSL/TLS). Thus, we require as a dependency
# a version of Apache which can do this.
#
USE_APACHE= yes
# Don't fsck with CFLAGS
CFLAGS:=
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-krb5=${KRB5_HOME} --without-krb4
OPTIONS+= BASE_KERBEROS5 "Use the base Kerberos 5 (Heimdal)"
.if exists(/usr/lib/libkrb5.so)
OPTIONS+= on
.else
OPTIONS+= off
.endif
.include <bsd.port.pre.mk>
.if exists(${PREFIX}/sbin/apxs)
APACHE_MODULE_DIR!=${PREFIX}/sbin/apxs -q LIBEXECDIR
.else
APACHE_MODULE_DIR=libexec/apache
.endif
PLIST_SUB+= APMODDIR=${APACHE_MODULE_DIR:S/^${PREFIX}\///}
.if defined(WITH_BASE_KERBEROS5)
KRB5_HOME= /usr
.else
LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5
KRB5_HOME= ${LOCALBASE}
.endif
.include <bsd.port.post.mk>