diff options
author | gdt <gdt@pkgsrc.org> | 2008-10-03 19:01:14 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2008-10-03 19:01:14 +0000 |
commit | 9efe008b7b650e80e371d5c6b27c8cdd0515a75e (patch) | |
tree | 013a27e2a005aaf4ae6aa814234f71ccc39f9a20 /security/kth-krb4 | |
parent | e5bc5b04a9833ca7c60ddbcc82d3edde884f86d4 (diff) | |
download | pkgsrc-9efe008b7b650e80e371d5c6b27c8cdd0515a75e.tar.gz |
Don't put glob.h in the PLIST for NetBSD. At least 4.0 and current do
not require this, and this fixes the build on those systems. Not
objected to by joerg@.
Diffstat (limited to 'security/kth-krb4')
-rw-r--r-- | security/kth-krb4/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/security/kth-krb4/Makefile b/security/kth-krb4/Makefile index 124ec8a04e5..6678295a165 100644 --- a/security/kth-krb4/Makefile +++ b/security/kth-krb4/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.49 2008/07/15 16:39:55 joerg Exp $ +# $NetBSD: Makefile,v 1.50 2008/10/03 19:01:14 gdt Exp $ # DISTNAME= krb4-1.2.2 PKGNAME= kth-krb4-1.2.2 -#PKGREVISION= 1 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= security net MASTER_SITES= ftp://ftp.pdc.kth.se/pub/krb/src/ @@ -47,8 +46,15 @@ SUBST_FILES.paths= ${WRKSRC}/lib/kafs/kafs.h SUBST_SED.paths+= -e 's|/usr/arla/etc/|${PKG_SYSCONFDIR}|g' SUBST_STAGE.paths= post-patch -.if ${OPSYS} == "NetBSD" +# On some systems, kth-krb4's libroken installs a glob.h to compensate +# for the system not having one. Please turn PLIST support for this +# on narrowly. +INSTALLS_GLOB= no +.if ${INSTALLS_GLOB} == yes PLIST.glob= yes +.endif + +.if ${OPSYS} == "NetBSD" CONFIGURE_ARGS+= --with-readline=yes \ --with-readline-lib=${BUILDLINK_PREFIX.readline}/lib \ --with-readline-include=${BUILDLINK_PREFIX.readline}/include/readline \ |