blob: 5dcc5fede8c3c28ef8e92d6429cd86c6bc4e1e94 (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# $NetBSD: Makefile,v 1.19 2002/08/25 19:23:15 jlam Exp $
#
DISTNAME= krb4-1.1.1
PKGNAME= kth-krb4-1.1.1
CATEGORIES= security net
MASTER_SITES= ftp://ftp.pdc.kth.se/pub/krb/src/
MAINTAINER= wennmach@netbsd.org
HOMEPAGE= http://www.pdc.kth.se/kth-krb/
COMMENT= Kerberos IV distribution from KTH
# enable this once our autoconf has been upgraded to autoconf>=2.52:
#BUILD_DEPENDS+= automake>1.4:../../devel/automake
CONFLICTS+= wu-ftpd-[0-9]*
CONFLICTS+= lukemftp-[0-9]*
CONFLICTS+= zephyr-[0-9]*
CONFLICTS+= libdes-[0-9]*
CRYPTO= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --includedir=${PREFIX}/include/kerberosIV
.include "../../mk/x11.buildlink.mk"
USE_LIBTOOL= yes
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
# this hangs while compiling one of the files, at least with the
# toolchain as of 1.5ZC (20020329)
.if ${MACHINE_ARCH} == "sparc64"
BROKEN= toolchain problems on sparc64 (1.5ZC, 20020329)
.endif
post-patch:
@${SED} -e 's|@PREFIX@|${PREFIX}|g' \
<${WRKSRC}/lib/kafs/kafs.h \
>${WRKSRC}/lib/kafs/kafs.h.sed
@${MV} ${WRKSRC}/lib/kafs/kafs.h.sed ${WRKSRC}/lib/kafs/kafs.h
# enable this once our autoconf has been upgraded to autoconf>=2.52:
#pre-configure:
# cd ${WRKSRC}; \
# ${LOCALBASE}/bin/aclocal; \
# ${LOCALBASE}/bin/autoheader; \
# ${LOCALBASE}/bin/automake -a --foreign -i; \
# ${LOCALBASE}/bin/autoconf
post-install:
@${INSTALL_DATA_DIR} ${PREFIX}/share/examples/kth-krb4
${INSTALL_DATA} ${WRKSRC}/etc/krb.conf ${PREFIX}/share/examples/kth-krb4
${INSTALL_DATA} ${WRKSRC}/etc/krb.realms ${PREFIX}/share/examples/kth-krb4
${INSTALL_DATA} ${WRKSRC}/etc/inetd.conf.changes ${PREFIX}/share/examples/kth-krb4
${INSTALL_DATA} ${FILESDIR}/services-1.4.2.diff ${PREFIX}/share/examples/kth-krb4
${INSTALL_DATA} ${FILESDIR}/services-1.5.diff ${PREFIX}/share/examples/kth-krb4
.include "../../mk/texinfo.mk"
.include "../../mk/bsd.pkg.mk"
|