From owner-svn-ports-all@freebsd.org Mon Jul 24 16:02:17 2017 Return-Path: Delivered-To: svn-ports-all@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 48463CFD270; Mon, 24 Jul 2017 16:02:17 +0000 (UTC) (envelope-from swills@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 170DE6D057; Mon, 24 Jul 2017 16:02:17 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6OG2GOa071720; Mon, 24 Jul 2017 16:02:16 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6OG2GP7071718; Mon, 24 Jul 2017 16:02:16 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201707241602.v6OG2GP7071718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 24 Jul 2017 16:02:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446534 - in head/security/openconnect-gui: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/security/openconnect-gui: . files X-SVN-Commit-Revision: 446534 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.23 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: Mon, 24 Jul 2017 16:02:17 -0000 Author: swills Date: Mon Jul 24 16:02:15 2017 New Revision: 446534 URL: https://svnweb.freebsd.org/changeset/ports/446534 Log: security/openconnect-gui: Fix path to vpnc-script and add it as dependency PR: 220837 Approved by: Piotr Kubaj (maintainer) Added: head/security/openconnect-gui/files/patch-CMakeLists.txt (contents, props changed) Modified: head/security/openconnect-gui/Makefile Modified: head/security/openconnect-gui/Makefile ============================================================================== --- head/security/openconnect-gui/Makefile Mon Jul 24 15:59:51 2017 (r446533) +++ head/security/openconnect-gui/Makefile Mon Jul 24 16:02:15 2017 (r446534) @@ -3,6 +3,7 @@ PORTNAME= openconnect-gui PORTVERSION= 1.4.1 +PORTREVISION= 1 DISTVERSIONPREFIX=v CATEGORIES= security @@ -14,7 +15,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= openconnect:security/openconnect LIB_DEPENDS= libgnutls.so:security/gnutls -RUN_DEPENDS= openconnect:security/openconnect +RUN_DEPENDS= openconnect:security/openconnect \ + vpnc-scripts>=0:sysutils/vpnc-scripts USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:C/-gui//} Added: head/security/openconnect-gui/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/openconnect-gui/files/patch-CMakeLists.txt Mon Jul 24 16:02:15 2017 (r446534) @@ -0,0 +1,19 @@ +--- CMakeLists.txt.orig 2017-07-18 18:47:18.951816000 +0000 ++++ CMakeLists.txt 2017-07-18 18:49:23.953701000 +0000 +@@ -13,15 +13,7 @@ set(PRODUCT_NAME_COMPANY_DOMAIN "redhat.com") + set(PRODUCT_NAME_COPYRIGHT "Copyright (C) 2015-2016 Red Hat Inc.") + + option(PROJ_GNUTLS_DEBUG "Enable GnuTLS debug mode" OFF) +-if(WIN32 AND MINGW) +- option(PROJ_UAC_ON "Enable UAC (don't turn it off in production)" ON) +- +- set(DEFAULT_VPNC_SCRIPT "vpnc-script.js") +-else(APPLE) +- set(DEFAULT_VPNC_SCRIPT "../Resources/vpnc-script") +-else() +- set(DEFAULT_VPNC_SCRIPT "/etc/vpnc/vpnc-script") +-endif() ++set(DEFAULT_VPNC_SCRIPT "../sbin/vpnc-script") + option(PROJ_PKCS11 "Enable PKCS11" ON) + option(PROJ_INI_SETTINGS "Store the settings in INI files." OFF) +