Received: by mail.netbsd.org (Postfix, from userid 605) id 44D4D84D57; Tue, 3 Apr 2018 18:22:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 41AD584D46 for ; Tue, 3 Apr 2018 18:22:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 46362P6hExDF for ; Tue, 3 Apr 2018 18:22:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 820AE84C86 for ; Tue, 3 Apr 2018 18:22:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 78D0AFBEC; Tue, 3 Apr 2018 18:22:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152277976738920" MIME-Version: 1.0 Date: Tue, 3 Apr 2018 18:22:47 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/x11/py-Tk To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180403182247.78D0AFBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_152277976738920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Apr 3 18:22:47 UTC 2018 Modified Files: pkgsrc/x11/py-Tk: Makefile Log Message: py-Tk: Darwin does not need libX11 To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66 pkgsrc/x11/py-Tk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152277976738920 Content-Disposition: inline Content-Length: 861 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/py-Tk/Makefile diff -u pkgsrc/x11/py-Tk/Makefile:1.65 pkgsrc/x11/py-Tk/Makefile:1.66 --- pkgsrc/x11/py-Tk/Makefile:1.65 Mon Mar 12 11:17:55 2018 +++ pkgsrc/x11/py-Tk/Makefile Tue Apr 3 18:22:47 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.65 2018/03/12 11:17:55 wiz Exp $ +# $NetBSD: Makefile,v 1.66 2018/04/03 18:22:47 adam Exp $ PKGNAME= ${PYPKGPREFIX}-Tk-${PY_DISTVERSION} PKGREVISION= 5 @@ -26,6 +26,7 @@ PYSETUPINSTALLARGS+= --install-lib ${PRE .if ${OPSYS} == "Darwin" PY_SETUP_SUBST+= X11LIB= .else +.include "../../x11/libX11/buildlink3.mk" PY_SETUP_SUBST+= X11LIB=\'X11\' .endif @@ -44,5 +45,4 @@ do-patch: .include "../../lang/python/srcdist.mk" .include "../../lang/tcl/buildlink3.mk" .include "../../x11/tk/buildlink3.mk" -.include "../../x11/libX11/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_152277976738920--