pkgsrc/security/kstart/Makefile
jakllsch 2418d05171 Import kstart-3.16.
k5start, and krenew are modified versions of kinit which add support
for running as a daemon to maintain a ticket cache, running a
command with credentials from a keytab and maintaining a ticket
cache until that command completes, obtaining AFS tokens (via an
external aklog) after obtaining tickets, and creating an AFS PAG
for a command. They are primarily useful in conjunction with
long-running jobs; for moving ticket handling code out of servers,
cron jobs, or daemons; and to obtain tickets and AFS tokens with
a single command.
2010-04-15 20:23:03 +00:00

29 lines
822 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2010/04/15 20:23:03 jakllsch Exp $
DISTNAME= kstart-3.16
CATEGORIES= sysutils
MASTER_SITES= http://archives.eyrie.org/software/kerberos/
MAINTAINER= jakllsch@NetBSD.org
HOMEPAGE= http://www.eyrie.org/~eagle/software/kstart/
COMMENT= Kerberos v5 kinit daemon that uses keytabs
LICENSE= mit
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --disable-k4start
CONFIGURE_ARGS+= --enable-setpag
# As the NetBSD base system doesn't ship with afslog
# and pkgsrc heimdal and pkgsrc openafs conflict;
# the path to (ak|afs)log is configurable.
BUILD_DEFS+= KSTART_PATH_AKLOG
KSTART_PATH_AKLOG?= ${PREFIX}/bin/afslog
.include "../../mk/bsd.prefs.mk"
CONFIGURE_ARGS+= --with-aklog=${KSTART_PATH_AKLOG:Q}
.include "../../mk/krb5.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"