2001-10-19 17:40:18 +00:00
|
|
|
# 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
|
2005-08-01 09:28:29 +00:00
|
|
|
PORTVERSION= 5.0.r6
|
2005-10-14 22:55:59 +00:00
|
|
|
PORTREVISION= 1
|
2001-10-19 17:40:18 +00:00
|
|
|
CATEGORIES= www
|
2002-07-18 17:20:16 +00:00
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
|
|
MASTER_SITE_SUBDIR=modauthkerb
|
2005-10-14 22:55:59 +00:00
|
|
|
DISTNAME= mod_auth_kerb-5.0-rc6
|
|
|
|
|
2004-08-18 16:21:55 +00:00
|
|
|
MAINTAINER= apache@FreeBSD.org
|
2003-03-07 06:14:21 +00:00
|
|
|
COMMENT= An Apache module for authenticating users with Kerberos v5
|
2001-10-19 17:40:18 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2003-11-07 09:12:58 +00:00
|
|
|
USE_APACHE= yes
|
2005-08-01 09:28:29 +00:00
|
|
|
# Don't fsck with CFLAGS
|
|
|
|
CFLAGS:=
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+=--with-krb5=${KRB5_HOME} --without-krb4
|
2005-10-14 22:55:59 +00:00
|
|
|
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>
|