50513d5d52
This commit should largele be a NOOP as it only adds support for DESTDIR undefined. This does allow us to start testing ports with DESTDIR set, but this is as of yet not supported. Although this has been extensively tested on pointyhat, this is a very intrusive change and some cases may have been overlooked. Please contact Gabor and me if you find any. PR: 100555 Submitted by: gabor Sponsored by: Google Summer of Code 2006
64 lines
1.5 KiB
Makefile
64 lines
1.5 KiB
Makefile
# Ports collection Makefile for: pam_krb5
|
|
# Date created: 11/03/2000
|
|
# Whom: nectar@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pam_krb5
|
|
PORTVERSION= 1.3.r7
|
|
PORTREVISION= 2
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME:S/_/-/}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/-rc/}
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= A Pluggable Authentication Module for Kerberos 5
|
|
|
|
MAN5= pam_krb5.5 pam_krb5afs.5
|
|
MAN8= pam_krb5.8 pam_krb5afs.8
|
|
|
|
USE_PERL5= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
.if defined(PACKAGE_BUILDING)
|
|
KRB5_IMPL= mit
|
|
.endif
|
|
|
|
.if defined(KRB5_IMPL) && ${KRB5_IMPL} == heimdal
|
|
LIB_DEPENDS= krb5.20:${PORTSDIR}/security/heimdal
|
|
.if defined(HEIMDAL_HOME)
|
|
KRB5_DIR?= ${HEIMDAL_HOME}
|
|
.endif
|
|
.elif defined(KRB5_IMPL) && ${KRB5_IMPL} == mit
|
|
LIB_DEPENDS= krb5.3:${PORTSDIR}/security/krb5
|
|
.if defined(KRB5_HOME)
|
|
KRB5_DIR?= ${KRB5_HOME}
|
|
.endif
|
|
.else
|
|
IGNORE= You must define KRB5_IMPL to be \"mit\" or \"heimdal\"
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 500000
|
|
IGNORE= FreeBSD 5.x already ships with its own version of pam_krb5
|
|
.endif
|
|
MANDIR= ${MANPREFIX}/man
|
|
PREFIX= /usr
|
|
MANPREFIX= ${TARGETDIR}/usr/share
|
|
MANDIR= ${PREFIX}/share/man
|
|
KRB5_DIR?= ${LOCALBASE}
|
|
CONFIGURE_ENV= CFLAGS="${CFLAGS}"
|
|
CONFIGURE_ARGS= --with-krb5="${KRB5_DIR}" \
|
|
--with-pamdir="${PREFIX}/lib" \
|
|
--with-man-sect=8 \
|
|
--mandir=${MANDIR} \
|
|
--without-krbafs
|
|
|
|
post-install:
|
|
cd ${WRKSRC} && ${GMAKE} install-man
|
|
|
|
.include <bsd.port.post.mk>
|