diff options
author | mharo <mharo@FreeBSD.org> | 1999-05-02 09:36:40 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-05-02 09:36:40 +0000 |
commit | f7a15175819915b6c7f4661f9bf521c0e155b598 (patch) | |
tree | 723c8251769bd378b688f857bbbcc703b8c7699a /net/arla/Makefile | |
parent | 136b0142bf66f08deb301c0638079f42c3c9434c (diff) | |
download | FreeBSD-ports-f7a15175819915b6c7f4661f9bf521c0e155b598.zip FreeBSD-ports-f7a15175819915b6c7f4661f9bf521c0e155b598.tar.gz |
BROKEN if kerberos not installed. Do check and report as broken if so.
Diffstat (limited to 'net/arla/Makefile')
-rw-r--r-- | net/arla/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/arla/Makefile b/net/arla/Makefile index 2769017..fd72218 100644 --- a/net/arla/Makefile +++ b/net/arla/Makefile @@ -3,7 +3,7 @@ # Date created: 09 Sep 1998 # Whom: Peter Hawkins <thepish@FreeBSD.ORG> # -# $Id: Makefile,v 1.3 1998/09/15 04:28:20 asami Exp $ +# $Id: Makefile,v 1.4 1998/12/01 08:31:44 asami Exp $ # DISTNAME= arla-0.9 @@ -12,7 +12,9 @@ MASTER_SITES= ftp://ftp.stacken.kth.se/pub/arla/ MAINTAINER= thepish@freebsd.org -#BUILD_DEPENDS= /usr/lib/libkafs.a:/usr/src/kerberosIV/lib/libkafs +.if !exists(/usr/lib/libkafs.a) +BROKEN= requires kerberos +.endif .if !exists(/usr/src/sys/kern/vnode_if.src) BROKEN= requires kernel source |