mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
21a283f3be
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# Created by: wollman
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mod_auth_kerb
|
|
PORTVERSION= 5.4
|
|
PORTREVISION= 8
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/modauthkerb/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
|
|
PKGNAMESUFFIX= 2
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= Apache module for authenticating users with Kerberos v5
|
|
|
|
LICENSE= MIT BSD3CLAUSE
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_MIT= ${WRKSRC}/LICENSE
|
|
LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/LICENSE
|
|
|
|
PORTSCOUT= limit:^5.4
|
|
|
|
USE_APACHE= 22+
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= -with-krb5=${GSSAPIBASEDIR} --without-krb4
|
|
|
|
OPTIONS_SINGLE= GSSAPI
|
|
OPTIONS_DEFAULT= GSSAPI_BASE
|
|
OPTIONS_SINGLE_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT
|
|
GSSAPI_BASE_DESC= Use Base version of GSS API
|
|
GSSAPI_HEIMDAL_DESC= Use Heimdal implementation of GSS API
|
|
GSSAPI_MIT_DESC= Use MIT implementation of GSS API
|
|
GSSAPI_DESC= Use Base version of GSS API
|
|
GSSAPI_BASE_USES= gssapi
|
|
GSSAPI_HEIMDAL_USES= gssapi:heimdal
|
|
GSSAPI_MIT_USES= gssapi:mit
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MGSSAPI_BASE} && ${OSVERSION} < 903504
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|@KRB5_LDFLAGS@|@KRB5_LDFLAGS@ -lgssapi_krb5|' \
|
|
${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|