From 30854325feb190793fac24645dd1c5d5c8c1c7f8 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Tue, 4 Apr 1995 05:57:19 +0000 Subject: [PATCH] Add USE_X11 for ports which are X11 users but don't use IMAKE. --- share/mk/bsd.port.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index bf4fdfa81425..2bbb24be028e 100644 --- a/share/mk/bsd.port.mk +++ b/share/mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.130 1995/04/01 10:01:49 jkh Exp $ +# $Id: bsd.port.mk,v 1.131 1995/04/04 04:23:37 gpalmer Exp $ # # Please view me with 4 column tabs! @@ -81,6 +81,7 @@ # NO_DEPENDS - Don't verify build of dependencies. # USE_GMAKE - Says that the port uses gmake. # USE_IMAKE - Says that the port uses imake. +# USE_X11 - Says that the port uses X11. # NO_INSTALL_MANPAGES - For imake ports that don't like the install.man # target. # HAS_CONFIGURE - Says that the port has its own configure script. @@ -164,7 +165,7 @@ PATCHDIR?= ${.CURDIR}/patches SCRIPTDIR?= ${.CURDIR}/scripts FILESDIR?= ${.CURDIR}/files PKGDIR?= ${.CURDIR}/pkg -.if defined(USE_IMAKE) +.if defined(USE_IMAKE) || defined(USE_X11) PREFIX?= ${X11BASE} .else PREFIX?= /usr/local