From owner-svn-ports-head@freebsd.org Tue Jun 18 15:26:02 2019 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 42D3E15C0C4A; Tue, 18 Jun 2019 15:26:02 +0000 (UTC) (envelope-from lifanov@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 DC5928259F; Tue, 18 Jun 2019 15:26:01 +0000 (UTC) (envelope-from lifanov@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 B84BBF0B0; Tue, 18 Jun 2019 15:26:01 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IFQ1ij012239; Tue, 18 Jun 2019 15:26:01 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IFQ0No012234; Tue, 18 Jun 2019 15:26:00 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201906181526.x5IFQ0No012234@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Tue, 18 Jun 2019 15:26:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504487 - in head/security: . openfortivpn X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: in head/security: . openfortivpn X-SVN-Commit-Revision: 504487 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DC5928259F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 18 Jun 2019 15:26:02 -0000 Author: lifanov Date: Tue Jun 18 15:26:00 2019 New Revision: 504487 URL: https://svnweb.freebsd.org/changeset/ports/504487 Log: new port: security/openfortivpn This is a client for PPP+SSL VPN tunnel services. It works with Fortinet VPN. Added: head/security/openfortivpn/ head/security/openfortivpn/Makefile (contents, props changed) head/security/openfortivpn/distinfo (contents, props changed) head/security/openfortivpn/pkg-descr (contents, props changed) head/security/openfortivpn/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Jun 18 14:34:06 2019 (r504486) +++ head/security/Makefile Tue Jun 18 15:26:00 2019 (r504487) @@ -409,6 +409,7 @@ SUBDIR += openconnect-gui SUBDIR += opencryptoki SUBDIR += openct + SUBDIR += openfortivpn SUBDIR += openiked SUBDIR += opensaml SUBDIR += opensc Added: head/security/openfortivpn/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/openfortivpn/Makefile Tue Jun 18 15:26:00 2019 (r504487) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= openfortivpn +PORTVERSION= 1.10.0 +DISTVERSIONPREFIX=v +CATEGORIES= security + +MAINTAINER= lifanov@FreeBSD.org +COMMENT= Client for PPP+SSL VPN tunnel services + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= autoreconf pkgconfig ssl +USE_GITHUB= yes +GH_ACCOUNT= adrienverge + +GNU_CONFIGURE= yes +CONFIGURE_ENV= OPENSSL_LIBS="-lssl -lcrypto" OPENSSL_CFLAGS=${OPENSSLINC} + +.include Added: head/security/openfortivpn/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/openfortivpn/distinfo Tue Jun 18 15:26:00 2019 (r504487) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560867376 +SHA256 (adrienverge-openfortivpn-v1.10.0_GH0.tar.gz) = d6ea0c84c0cf811530073fa19865334bb42ab10a780157fe95c4efb3476ad58d +SIZE (adrienverge-openfortivpn-v1.10.0_GH0.tar.gz) = 74872 Added: head/security/openfortivpn/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/openfortivpn/pkg-descr Tue Jun 18 15:26:00 2019 (r504487) @@ -0,0 +1,5 @@ +Openfortivpn is a client for PPP+SSL VPN tunnel services. +It spawns a pppd process and operates the communication between +the gateway and the process. It is compatible with Fortinet VPNs. + +WWW: https://github.com/adrienverge/openfortivpn Added: head/security/openfortivpn/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/openfortivpn/pkg-plist Tue Jun 18 15:26:00 2019 (r504487) @@ -0,0 +1,4 @@ +bin/openfortivpn +man/man1/openfortivpn.1.gz +@dir %%ETCDIR%% +@sample %%DATADIR%%/config.template %%ETCDIR%%/config