From owner-svn-ports-all@freebsd.org Thu Oct 10 07:03:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5C63114A946; Thu, 10 Oct 2019 07:03:19 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46phr71lrcz4h4t; Thu, 10 Oct 2019 07:03:19 +0000 (UTC) (envelope-from tobik@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 1F7762643D; Thu, 10 Oct 2019 07:03:19 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9A73JFX094735; Thu, 10 Oct 2019 07:03:19 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9A73JEU094734; Thu, 10 Oct 2019 07:03:19 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201910100703.x9A73JEU094734@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 10 Oct 2019 07:03:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r514208 - head/graphics/zathura X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/graphics/zathura X-SVN-Commit-Revision: 514208 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Oct 2019 07:03:19 -0000 Author: tobik Date: Thu Oct 10 07:03:18 2019 New Revision: 514208 URL: https://svnweb.freebsd.org/changeset/ports/514208 Log: graphics/zathura: Fix SQLITE option There is no opt_MESON_ARGS_OFF helper and Zathura also does not have an enable-sqlite option. It has an 'sqlite' feature which can be turned on/off with the MESON_ENABLED helper. SQLite support has been auto-enabled for ~7 months by always having USES=sqlite in the port. Since the SQLITE option can now properly turn that support off, enable it by default to not cause too many surprises. Modified: head/graphics/zathura/Makefile Modified: head/graphics/zathura/Makefile ============================================================================== --- head/graphics/zathura/Makefile Thu Oct 10 06:33:03 2019 (r514207) +++ head/graphics/zathura/Makefile Thu Oct 10 07:03:18 2019 (r514208) @@ -3,7 +3,7 @@ PORTNAME= zathura DISTVERSION= 0.4.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics print MASTER_SITES= https://pwmt.org/projects/zathura/download/ \ http://www.madpilot.net/~mad/pwmt.org/ @@ -20,14 +20,15 @@ LIB_DEPENDS= libcairo.so:graphics/cairo \ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sphinx_rtd_theme>0:textproc/py-sphinx_rtd_theme@${PY_FLAVOR} -USES= compiler:c11 gettext-tools:build gnome meson ninja \ - pkgconfig python sqlite tar:xz +USES= compiler:c11 gettext-tools:build gnome meson ninja pkgconfig \ + python tar:xz USE_GNOME= glib20 gtk30 gdkpixbuf2 INSTALLS_ICONS= yes -OPTIONS_DEFINE= SQLITE +OPTIONS_DEFINE= SQLITE +OPTIONS_DEFAULT= SQLITE -SQLITE_LIB_DEPENDS= libsqlite3.so:databases/sqlite3 -SQLITE_MESON_ARGS_OFF= -Denable-sqlite=false +SQLITE_USES= sqlite +SQLITE_MESON_ENABLED= sqlite .include