From owner-svn-ports-head@freebsd.org Fri Jan 5 18:17:42 2018 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 37BECEB7C8A; Fri, 5 Jan 2018 18:17:42 +0000 (UTC) (envelope-from pawel@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 021C87614B; Fri, 5 Jan 2018 18:17:41 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w05IHflf013766; Fri, 5 Jan 2018 18:17:41 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w05IHfJY013765; Fri, 5 Jan 2018 18:17:41 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201801051817.w05IHfJY013765@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 5 Jan 2018 18:17:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458161 - head/textproc/meld X-SVN-Group: ports-head X-SVN-Commit-Author: pawel X-SVN-Commit-Paths: head/textproc/meld X-SVN-Commit-Revision: 458161 X-SVN-Commit-Repository: ports 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.25 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: Fri, 05 Jan 2018 18:17:42 -0000 Author: pawel Date: Fri Jan 5 18:17:40 2018 New Revision: 458161 URL: https://svnweb.freebsd.org/changeset/ports/458161 Log: - Remove deprecated PYDISTUTILS_INSTALLNOSINGLE by manually setting PYDISTUTILS_INSTALLARGS - Set USE_PYTHON=noflavors, meld is GUI application and flavors make no sense here Modified: head/textproc/meld/Makefile Modified: head/textproc/meld/Makefile ============================================================================== --- head/textproc/meld/Makefile Fri Jan 5 18:17:17 2018 (r458160) +++ head/textproc/meld/Makefile Fri Jan 5 18:17:40 2018 (r458161) @@ -18,12 +18,15 @@ RUN_DEPENDS= gsettings-desktop-schemas>=0:devel/gsetti USES= desktop-file-utils gettext python:3.4+ shared-mime-info \ shebangfix tar:xz SHEBANG_FILES= bin/meld -USE_PYTHON= distutils +USE_PYTHON= distutils noflavors USE_GNOME= gtksourceview3 intltool libxml2:build pygobject3 GLIB_SCHEMAS= org.gnome.meld.gschema.xml -PYDISTUTILS_INSTALLNOSINGLE= yes PYDISTUTILS_INSTALL_TARGET= --no-update-icon-cache --no-compile-schemas install INSTALLS_ICONS= yes NO_ARCH= yes -.include +.include + +PYDISTUTILS_INSTALLARGS= -c -O1 --prefix=${PREFIX} --root=${STAGEDIR} + +.include