diff options
author | asami <asami@FreeBSD.org> | 1998-09-15 04:37:56 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-09-15 04:37:56 +0000 |
commit | b056f0c5a735ce2ed5309925076f7bd5af16e754 (patch) | |
tree | af2bf58f9590b5839e898b64059f6e300c1ee562 /x11-fm | |
parent | 3401e1a628a61837576d285c6ea40ce4e70d7c4f (diff) | |
download | FreeBSD-ports-b056f0c5a735ce2ed5309925076f7bd5af16e754.zip FreeBSD-ports-b056f0c5a735ce2ed5309925076f7bd5af16e754.tar.gz |
Properly define BROKEN (only if DISPLAY is not set).
Reminded by: maintainer
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 0a4f340..52e4c06 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> |