Import libexec portions of Heimdal, from cryptosrc-intl.

This commit is contained in:
thorpej 2000-06-16 23:32:37 +00:00
parent 8b48fb7c45
commit b4bbc15da4
6 changed files with 226 additions and 0 deletions

39
libexec/hprop/Makefile Normal file
View File

@ -0,0 +1,39 @@
# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:37 thorpej Exp $
DIST= ${.CURDIR}/../../dist
.PATH: ${DIST}/heimdal/kdc
WARNS?= 1
MKLINT= no
PROG= hprop
SRCS= hprop.c \
hprop-common.c
CPPFLAGS+= -I. \
-I${DIST}/heimdal/kdc \
-I${DIST}/heimdal/lib/hdb \
-I${DIST}/heimdal/lib/krb5 \
-I${.CURDIR}/../../include/heimdal \
-I${DIST}/heimdal/lib/asn1 \
-I${DESTDIR}/usr/include/krb5 \
-I${DIST}/openssl/crypto/md4 \
-I${DIST}/openssl/crypto/md5 \
-I${DIST}/openssl/crypto/sha \
-I${DIST}/openssl/crypto/rc4 \
-I${DIST}/openssl/crypto/des \
-DHAVE_CONFIG_H
LDADD= -lhdb \
-lkrb5 \
-lkdb \
-lkrb \
-lcrypto \
-lasn1 \
-lcom_err \
-lroken \
-lcrypt
MAN= hprop.8
.include <bsd.prog.mk>

38
libexec/hpropd/Makefile Normal file
View File

@ -0,0 +1,38 @@
# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:38 thorpej Exp $
DIST= ${.CURDIR}/../../dist
.PATH: ${DIST}/heimdal/kdc
WARNS?= 1
MKLINT= no
PROG= hpropd
SRCS= hpropd.c \
hprop-common.c
CPPFLAGS+= -I. \
-I${DIST}/heimdal/kdc \
-I${.CURDIR}/../../include/heimdal \
-I${DIST}/heimdal/lib/asn1 \
-I${DIST}/heimdal/lib/krb5 \
-I${DESTDIR}/usr/include/krb5 \
-I${DIST}/openssl/crypto/md4 \
-I${DIST}/openssl/crypto/md5 \
-I${DIST}/openssl/crypto/sha \
-I${DIST}/openssl/crypto/rc4 \
-I${DIST}/openssl/crypto/des \
-DHAVE_CONFIG_H
LDADD= -lhdb \
-lkrb5 \
-lkdb \
-lkrb \
-lcrypto \
-lasn1 \
-lcom_err \
-lroken \
-lcrypt
MAN= hpropd.8
.include <bsd.prog.mk>

41
libexec/kadmind/Makefile Normal file
View File

@ -0,0 +1,41 @@
# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:38 thorpej Exp $
DIST= ${.CURDIR}/../../dist
.PATH: ${DIST}/heimdal/kadmin
WARNS?= 1
MKLINT= no
PROG= kadmind
SRCS= kadmind.c \
server.c \
version4.c
CPPFLAGS+= -I. \
-I${DIST}/heimdal/kadmin \
-I${DIST}/heimdal/lib/krb5 \
-I${DIST}/heimdal/lib/asn1 \
-I${.CURDIR}/../../include/heimdal \
-I${DESTDIR}/usr/include/kadm5 \
-I${DESTDIR}/usr/include/krb5 \
-I${DIST}/openssl/crypto/md4 \
-I${DIST}/openssl/crypto/md5 \
-I${DIST}/openssl/crypto/sha \
-I${DIST}/openssl/crypto/rc4 \
-I${DIST}/openssl/crypto/des \
-DHAVE_CONFIG_H
LDADD= -lkadm5srv \
-lhdb \
-lkrb5 \
-lkadm \
-lkrb \
-lcrypto \
-lasn1 \
-lcom_err \
-lroken \
-lcrypt
NOMAN=
.include <bsd.prog.mk>

46
libexec/kdc/Makefile Normal file
View File

@ -0,0 +1,46 @@
# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:38 thorpej Exp $
DIST= ${.CURDIR}/../../dist
.PATH: ${DIST}/heimdal/kdc
WARNS?= 1
MKLINT= no
PROG= kdc
SRCS= 524.c \
config.c \
connect.c \
kaserver.c \
kdc_locl.h \
kerberos4.c \
kerberos4.h \
kerberos5.c \
log.c \
main.c \
misc.c \
CPPFLAGS+= -I. \
-I${DIST}/heimdal/kdc \
-I${.CURDIR}/../../include/heimdal \
-I${DIST}/heimdal/lib/asn1 \
-I${DIST}/heimdal/lib/krb5 \
-I${DESTDIR}/usr/include/krb5 \
-I${DIST}/openssl/crypto/md4 \
-I${DIST}/openssl/crypto/md5 \
-I${DIST}/openssl/crypto/sha \
-I${DIST}/openssl/crypto/rc4 \
-I${DIST}/openssl/crypto/des \
-DHAVE_CONFIG_H
LDADD= -lhdb \
-lkrb5 \
-lkrb \
-lcrypto \
-lasn1 \
-lcom_err \
-lroken \
-lcrypt
MAN= kdc.8
.include <bsd.prog.mk>

27
libexec/kfd/Makefile Normal file
View File

@ -0,0 +1,27 @@
# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:38 thorpej Exp $
DIST= ${.CURDIR}/../../dist
.PATH: ${DIST}/heimdal/appl/kf
WARNS?= 1
MKLINT= no
PROG= kfd
SRCS= kfd.c
CPPFLAGS+= -I. \
-I${DIST}/heimdal/appl/kf \
-I${.CURDIR}/../../include/heimdal \
-I${DESTDIR}/usr/include/krb5 \
-DHAVE_CONFIG_H
LDADD= -lkrb5 \
-lcrypto \
-lasn1 \
-lcom_err \
-lroken \
-lcrypt
NOMAN=
.include <bsd.prog.mk>

35
libexec/kpasswdd/Makefile Normal file
View File

@ -0,0 +1,35 @@
# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:38 thorpej Exp $
DIST= ${.CURDIR}/../../dist
.PATH: ${DIST}/heimdal/kpasswd
WARNS?= 1
MKLINT= no
PROG= kpasswdd
SRCS= kpasswdd.c
CPPFLAGS+= -I. \
-I${DIST}/heimdal/kpasswd \
-I${.CURDIR}/../../include/heimdal \
-I${DESTDIR}/usr/include/kadm5 \
-I${DESTDIR}/usr/include/krb5 \
-I${DIST}/openssl/crypto/md4 \
-I${DIST}/openssl/crypto/md5 \
-I${DIST}/openssl/crypto/sha \
-I${DIST}/openssl/crypto/rc4 \
-I${DIST}/openssl/crypto/des \
-DHAVE_CONFIG_H
LDADD= -lkadm5srv \
-lhdb \
-lkrb5 \
-lcrypto \
-lasn1 \
-lcom_err \
-lroken \
-lcrypt
MAN = kpasswdd.8
.include <bsd.prog.mk>