diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-09-15 04:37:56 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-09-15 04:37:56 +0000 |
commit | 2b9deb6546c74522ef8c1708c8f1018dde68b369 (patch) | |
tree | 47310787e8516bfe8cacad514377e4f754226ac4 /x11-fm | |
parent | Oops, one more thing. (diff) |
Properly define BROKEN (only if DISPLAY is not set).
Reminded by: maintainer
Notes
Notes:
svn path=/head/; revision=13131
Diffstat (limited to 'x11-fm')
-rw-r--r-- | x11-fm/x-files/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/x11-fm/x-files/Makefile b/x11-fm/x-files/Makefile index 0a4f340e0b79..52e4c066d64b 100644 --- a/x11-fm/x-files/Makefile +++ b/x11-fm/x-files/Makefile @@ -3,7 +3,7 @@ # Date created: 14 April 1998 # Whom: Donald J. Maddox <dmaddox@scsn.net> # -# $Id: Makefile,v 1.2 1998/08/05 09:31:34 asami Exp $ +# $Id: Makefile,v 1.3 1998/08/07 23:56:41 asami Exp $ # DISTNAME= X-Files-1.43 @@ -15,6 +15,10 @@ MAINTAINER= dmaddox@scsn.net BUILD_DEPENDS= wish8.0:${PORTSDIR}/x11-toolkits/tk80 +.if !defined(DISPLAY) +BROKEN= requires DISPLAY to install +.endif + WRKSRC= ${WRKDIR}/X-Files NO_BUILD= yes USE_X_PREFIX= yes @@ -33,6 +37,4 @@ xfilesrc xflogo.gif @${INSTALL_DATA} ${WRKSRC}/X-Files.xpm ${X11BASE}/include/X11/pixmaps @${INSTALL_MAN} ${WRKSRC}/X-Files.1x ${X11BASE}/man/man1 -BROKEN= DISPLAY - .include <bsd.port.mk> |