Received: by mail.netbsd.org (Postfix, from userid 605) id B051184D8D; Thu, 8 Feb 2018 21:37:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3AC2084D86 for ; Thu, 8 Feb 2018 21:37:15 +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 dcIlO48FOIFR for ; Thu, 8 Feb 2018 21:37:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 51E7984D21 for ; Thu, 8 Feb 2018 21:37:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4AE3AFB40; Thu, 8 Feb 2018 21:37:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1518125834150070" MIME-Version: 1.0 Date: Thu, 8 Feb 2018 21:37:14 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/graphics To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180208213714.4AE3AFB40@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. --_----------=_1518125834150070 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Feb 8 21:37:14 UTC 2018 Modified Files: pkgsrc/graphics/py-matplotlib-gtk2: Makefile pkgsrc/graphics/py-matplotlib-tk: Makefile Log Message: py-matplotlib-gtk2/tk: fix building #52992 To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.63 pkgsrc/graphics/py-matplotlib-gtk2/Makefile cvs rdiff -u -r1.30 -r1.31 pkgsrc/graphics/py-matplotlib-tk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1518125834150070 Content-Disposition: inline Content-Length: 1500 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/py-matplotlib-gtk2/Makefile diff -u pkgsrc/graphics/py-matplotlib-gtk2/Makefile:1.62 pkgsrc/graphics/py-matplotlib-gtk2/Makefile:1.63 --- pkgsrc/graphics/py-matplotlib-gtk2/Makefile:1.62 Tue Jan 30 10:28:51 2018 +++ pkgsrc/graphics/py-matplotlib-gtk2/Makefile Thu Feb 8 21:37:14 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.62 2018/01/30 10:28:51 adam Exp $ +# $NetBSD: Makefile,v 1.63 2018/02/08 21:37:14 adam Exp $ .include "../../graphics/py-matplotlib/Makefile.common" @@ -34,5 +34,6 @@ do-test: ${PYTHONBIN} -c "import matplotlib; matplotlib.test()" .include "../../lang/python/egg.mk" +.include "../../math/py-numpy/buildlink3.mk" .include "../../x11/py-gtk2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/graphics/py-matplotlib-tk/Makefile diff -u pkgsrc/graphics/py-matplotlib-tk/Makefile:1.30 pkgsrc/graphics/py-matplotlib-tk/Makefile:1.31 --- pkgsrc/graphics/py-matplotlib-tk/Makefile:1.30 Tue Jan 30 10:28:51 2018 +++ pkgsrc/graphics/py-matplotlib-tk/Makefile Thu Feb 8 21:37:14 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2018/01/30 10:28:51 adam Exp $ +# $NetBSD: Makefile,v 1.31 2018/02/08 21:37:14 adam Exp $ .include "../../graphics/py-matplotlib/Makefile.common" @@ -33,5 +33,6 @@ do-test: ${PYTHONBIN} -c "import matplotlib; matplotlib.test()" .include "../../lang/python/egg.mk" +.include "../../math/py-numpy/buildlink3.mk" .include "../../x11/tk/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1518125834150070--