From owner-svn-ports-head@freebsd.org Mon Feb 15 00:56:31 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB009AA81B1; Mon, 15 Feb 2016 00:56:31 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 89EEB10D4; Mon, 15 Feb 2016 00:56:31 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1F0uUGa062504; Mon, 15 Feb 2016 00:56:30 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1F0uUUe062503; Mon, 15 Feb 2016 00:56:30 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201602150056.u1F0uUUe062503@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Mon, 15 Feb 2016 00:56:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408914 - head/math/py-matplotlib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Feb 2016 00:56:31 -0000 Author: olgeni Date: Mon Feb 15 00:56:30 2016 New Revision: 408914 URL: https://svnweb.freebsd.org/changeset/ports/408914 Log: Make the cairo and gdkpixbuf2 dependencies conditional on GTKBACKEND and GTKAGGBACKEND. This change restores headless support. Approved by: maintainer (by mail) Modified: head/math/py-matplotlib/Makefile Modified: head/math/py-matplotlib/Makefile ============================================================================== --- head/math/py-matplotlib/Makefile Mon Feb 15 00:23:08 2016 (r408913) +++ head/math/py-matplotlib/Makefile Mon Feb 15 00:56:30 2016 (r408914) @@ -26,7 +26,6 @@ RUN_DEPENDS= ${PYNUMPY} \ USES= compiler:c++11-lib gettext pkgconfig python shebangfix uniquefiles:dirs USE_PYTHON= autoplist distutils -USE_GNOME= cairo gdkpixbuf2 CFLAGS+= -I${LOCALBASE}/include OPTIONS_DEFINE= EXAMPLES GTKBACKEND GTKAGGBACKEND QT4AGGBACKEND \ @@ -36,9 +35,9 @@ OPTIONS_SUB= yes GTKBACKEND_DESC= GTK backend support GTKBACKEND_VARS= GTK_BACKEND=True GTKBACKEND_VARS_OFF= GTK_BACKEND=False -GTKBACKEND_USE= GNOME=gtk20,pygtk2 +GTKBACKEND_USE= GNOME=gtk20,pygtk2,cairo,gdkpixbuf2 GTKAGGBACKEND_DESC= GTKAgg backend support -GTKAGGBACKEND_USE= GNOME=gtk20,pygtk2 +GTKAGGBACKEND_USE= GNOME=gtk20,pygtk2,cairo,gdkpixbuf2 GTKAGGBACKEND_VARS= GTKAGG_BACKEND=True GTKAGGBACKEND_VARS_OFF= GTKAGG_BACKEND=False QT4AGGBACKEND_DESC= Qt4Agg backend support