From owner-svn-ports-head@freebsd.org Mon Feb 19 16:20:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3401F0CE96; Mon, 19 Feb 2018 16:20:43 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 722EF7D055; Mon, 19 Feb 2018 16:20:43 +0000 (UTC) (envelope-from mat@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6D1D01CD3E; Mon, 19 Feb 2018 16:20:43 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1JGKhxS091823; Mon, 19 Feb 2018 16:20:43 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1JGKhIS091821; Mon, 19 Feb 2018 16:20:43 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201802191620.w1JGKhIS091821@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 19 Feb 2018 16:20:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462333 - in head: databases/sqlitestudio net-im/toxic security/pam-modules X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head: databases/sqlitestudio net-im/toxic security/pam-modules X-SVN-Commit-Revision: 462333 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: Mon, 19 Feb 2018 16:20:43 -0000 Author: mat Date: Mon Feb 19 16:20:42 2018 New Revision: 462333 URL: https://svnweb.freebsd.org/changeset/ports/462333 Log: Don't abuse opt_VARS to add to USES. Sponsored by: Absolight Modified: head/databases/sqlitestudio/Makefile (contents, props changed) head/net-im/toxic/Makefile (contents, props changed) head/security/pam-modules/Makefile (contents, props changed) Modified: head/databases/sqlitestudio/Makefile ============================================================================== --- head/databases/sqlitestudio/Makefile Mon Feb 19 16:20:20 2018 (r462332) +++ head/databases/sqlitestudio/Makefile Mon Feb 19 16:20:42 2018 (r462333) @@ -59,7 +59,8 @@ post-patch: PLUGIN_DIRS= PLUGIN_CSV_IMPORT_VARS= PLUGIN_DIRS+=CsvImport PLUGIN_CSV_EXPORT_VARS= PLUGIN_DIRS+=CsvExport -PLUGIN_DB_SQLITE_CIPHER_VARS= PLUGIN_DIRS+=DbSqliteCipher USES+=ssl +PLUGIN_DB_SQLITE_CIPHER_USES= ssl +PLUGIN_DB_SQLITE_CIPHER_VARS= PLUGIN_DIRS+=DbSqliteCipher PLUGIN_HTML_EXPORT_VARS= PLUGIN_DIRS+=HtmlExport PLUGIN_JSON_EXPORT_VARS= PLUGIN_DIRS+=JsonExport PLUGIN_PDF_EXPORT_VARS= PLUGIN_DIRS+=PdfExport Modified: head/net-im/toxic/Makefile ============================================================================== --- head/net-im/toxic/Makefile Mon Feb 19 16:20:20 2018 (r462332) +++ head/net-im/toxic/Makefile Mon Feb 19 16:20:42 2018 (r462333) @@ -35,7 +35,7 @@ X11_USE= GNOME=gdkpixbuf2,glib20 XORG=x11 X11_MAKE_ARGS_OFF= DISABLE_X11=1 DISABLE_DESKTOP_NOTIFY=1 X11_LIB_DEPENDS=libnotify.so:devel/libnotify -PYTHON_VARS= USES+=python:3.3+ +PYTHON_USES= python:3.3+ PYTHON_MAKE_ARGS= ENABLE_PYTHON=1 MAKE_ENV= USER_CFLAGS="${CFLAGS}" USER_LDFLAGS="${LDFLAGS}" Modified: head/security/pam-modules/Makefile ============================================================================== --- head/security/pam-modules/Makefile Mon Feb 19 16:20:20 2018 (r462332) +++ head/security/pam-modules/Makefile Mon Feb 19 16:20:42 2018 (r462333) @@ -31,7 +31,8 @@ MYSQL_USE= MYSQL PGSQL_CONFIGURE_ENABLE= pgsql PGSQL_DESC= Build pam_pgsql -PGSQL_VARS= USES+=pgsql WANT_PGSQL=client +PGSQL_USES= pgsql +PGSQL_VARS= WANT_PGSQL=client SYSLOG_CONFIGURE_ENABLE= log SYSLOG_DESC= Build pam_log