From owner-svn-ports-all@freebsd.org Wed Jul 18 19:17:29 2018 Return-Path: Delivered-To: svn-ports-all@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 D94C0102EC37; Wed, 18 Jul 2018 19:17:29 +0000 (UTC) (envelope-from arrowd@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 870C088E6D; Wed, 18 Jul 2018 19:17:29 +0000 (UTC) (envelope-from arrowd@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 63ED91E74C; Wed, 18 Jul 2018 19:17:29 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6IJHT4c066976; Wed, 18 Jul 2018 19:17:29 GMT (envelope-from arrowd@FreeBSD.org) Received: (from arrowd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6IJHTK6066975; Wed, 18 Jul 2018 19:17:29 GMT (envelope-from arrowd@FreeBSD.org) Message-Id: <201807181917.w6IJHTK6066975@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arrowd set sender to arrowd@FreeBSD.org using -f From: Gleb Popov Date: Wed, 18 Jul 2018 19:17:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474893 - head/security/qtkeychain X-SVN-Group: ports-head X-SVN-Commit-Author: arrowd X-SVN-Commit-Paths: head/security/qtkeychain X-SVN-Commit-Revision: 474893 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.27 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: Wed, 18 Jul 2018 19:17:30 -0000 Author: arrowd Date: Wed Jul 18 19:17:28 2018 New Revision: 474893 URL: https://svnweb.freebsd.org/changeset/ports/474893 Log: security/qtkeychain: Add dependency to libsecret and link to it correctly. PR: 229837 Reported by: Piotr Kubaj Approved by: tcberner (mentor) Modified: head/security/qtkeychain/Makefile Modified: head/security/qtkeychain/Makefile ============================================================================== --- head/security/qtkeychain/Makefile Wed Jul 18 19:05:39 2018 (r474892) +++ head/security/qtkeychain/Makefile Wed Jul 18 19:17:28 2018 (r474893) @@ -3,6 +3,7 @@ PORTNAME= qtkeychain DISTVERSIONPREFIX= v DISTVERSION= 0.9.0 +PORTREVISION= 1 CATEGORIES= security PKGNAMESUFFIX= -${FLAVOR} @@ -15,11 +16,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING FLAVORS= qt4 qt5 FLAVOR?= ${FLAVORS:[1]} -USES= cmake +USES= cmake localbase:ldflags pkgconfig USE_GITHUB= yes GH_ACCOUNT= frankosterfeld USE_LDCONFIG= yes -USE_KDE= ecm PLIST_SUB+= VERSION=${PORTVERSION} . if ${FLAVOR} == qt4 @@ -35,5 +35,12 @@ PLIST_SUB+= PLIST_QT_PREFIX_UPCASE=Qt5 PLIST_QT_PREFIX PLIST= ${PKGDIR}/pkg-plist.${FLAVOR} . endif +OPTIONS_DEFINE= LIBSECRET +OPTIONS_DEFAULT= LIBSECRET + +LIBSECRET_DESC= Enable libsecret backend + +LIBSECRET_LIB_DEPENDS= libsecret-1.so:security/libsecret +LIBSECRET_CMAKE_BOOL= LIBSECRET_SUPPORT .include