aboutsummaryrefslogtreecommitdiff
path: root/security/pam_krb5/Makefile
blob: 599e944e0da5e2d07bf3e46b869cffe943bb9da2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Created by: nectar@FreeBSD.org
# $FreeBSD$

PORTNAME=		pam_krb5
PORTVERSION=		4.6
CATEGORIES=		security
MASTER_SITES=		http://archives.eyrie.org/software/kerberos/ \
			http://archives.eyrie.org/software/ARCHIVE/pam-krb5/
DISTNAME=		pam-krb5-${PORTVERSION:S/.r/-rc/}

MAINTAINER=		cy@FreeBSD.org
COMMENT=		A Pluggable Authentication Module for Kerberos 5

CONFLICTS=		pam_krb5-rh-2.*

MAN5=			pam_krb5.5

USES=		perl5
GNU_CONFIGURE=		yes
USE_GMAKE=		yes

.if defined(KRB5_IMPL) && ${KRB5_IMPL} == 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

MANDIR=			${MANPREFIX}/man
MANDIR=			${PREFIX}/share/man
KRB5_DIR?=		${LOCALBASE}
CONFIGURE_ARGS=		--with-krb5="${KRB5_DIR}"

NO_STAGE=	yes
post-install:
	cd ${WRKSRC} && ${GMAKE} install-man

.include <bsd.port.mk>