From owner-freebsd-ports Sun Aug 29 2:29:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 2419414FF8; Sun, 29 Aug 1999 02:29:18 -0700 (PDT) (envelope-from cpiazza@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1002) id 0DE00751; Sun, 29 Aug 1999 02:28:57 -0700 (PDT) Date: Sun, 29 Aug 1999 02:28:56 -0700 From: Chris Piazza To: asami@FreeBSD.org Cc: FreeBSD Ports Subject: USE_QT2 in bsd.port.mk Message-ID: <19990829022856.H56753@norn.ca.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre1i X-Operating-System: FreeBSD 4.0-CURRENT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I recently committed the (long awaited) qt2 port, and I'd like to get the functionality of USE_QT2 into bsd.port.mk. It requires USE_NEWGCC because qt2 had to be built with it... I'm not really sure of the wording on the comments, though. -Chris -- cpiazza@home.net cpiazza@FreeBSD.org "It's better to be quotable than to be honest." --Tom Stoppard Index: ports/Mk/bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.317 diff -u -r1.317 bsd.port.mk --- bsd.port.mk 1999/08/25 04:40:20 1.317 +++ bsd.port.mk 1999/08/29 09:28:01 @@ -144,7 +144,8 @@ # target. # USE_X_PREFIX - Says that the port installs in ${X11BASE}. Implies USE_XLIB. # USE_XLIB - Says that the port uses X libraries. -# USE_QT - Says that the port uses the latest version of qt toolkit. +# USE_QT - Says that the port uses version 1 of the qt toolkit. +# USE_QT2 - Says that the port uses version 2 of the qt toolkit. # # Dependency checking. Use these if your port requires another port # not in the list above. @@ -656,6 +657,11 @@ .if defined(USE_QT) LIB_DEPENDS+= qt.2:${PORTSDIR}/x11-toolkits/qt142 +.endif + +.if defined(USE_QT2) +LIB_DEPENDS+= qt2.2:${PORTSDIR}/x11-toolkits/qt2 +USE_NEWGCC= yes .endif .if exists(${PORTSDIR}/../Makefile.inc) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message