From owner-dev-commits-ports-all@freebsd.org Wed Jun 2 02:18:50 2021 Return-Path: Delivered-To: dev-commits-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 83063637E12; Wed, 2 Jun 2021 02:18:50 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Fvt4V3JSHz3KKC; Wed, 2 Jun 2021 02:18:50 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 599036757; Wed, 2 Jun 2021 02:18:50 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 1522Iovb007504; Wed, 2 Jun 2021 02:18:50 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1522Io42007503; Wed, 2 Jun 2021 02:18:50 GMT (envelope-from git) Date: Wed, 2 Jun 2021 02:18:50 GMT Message-Id: <202106020218.1522Io42007503@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Guangyuan Yang Subject: git: f1e718499cb3 - main - www/civetweb: New port: Embedded C/C++ web server MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: ygy X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: f1e718499cb309115b622453026bbacc4af60d73 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jun 2021 02:18:50 -0000 The branch main has been updated by ygy: URL: https://cgit.FreeBSD.org/ports/commit/?id=f1e718499cb309115b622453026bbacc4af60d73 commit f1e718499cb309115b622453026bbacc4af60d73 Author: Frank Scholl AuthorDate: 2021-06-02 02:18:26 +0000 Commit: Guangyuan Yang CommitDate: 2021-06-02 02:18:26 +0000 www/civetweb: New port: Embedded C/C++ web server PR: 255974 Approved by: lwhsu (mentor) --- www/Makefile | 1 + www/civetweb/Makefile | 21 +++++++++++++++++++++ www/civetweb/distinfo | 3 +++ www/civetweb/pkg-descr | 3 +++ www/civetweb/pkg-plist | 11 +++++++++++ 5 files changed, 39 insertions(+) diff --git a/www/Makefile b/www/Makefile index dd4783cc6c6b..db02f8e78f5a 100644 --- a/www/Makefile +++ b/www/Makefile @@ -78,6 +78,7 @@ SUBDIR += chpasswd SUBDIR += chrome-gnome-shell SUBDIR += chromium + SUBDIR += civetweb SUBDIR += ckeditor SUBDIR += cl-lml SUBDIR += cl-lml-sbcl diff --git a/www/civetweb/Makefile b/www/civetweb/Makefile new file mode 100644 index 000000000000..b011c9c4e494 --- /dev/null +++ b/www/civetweb/Makefile @@ -0,0 +1,21 @@ +# Created by: maintainer.freebsd@xpoundit.com + +PORTNAME= civetweb +DISTVERSIONPREFIX= v +DISTVERSION= 1.14 +CATEGORIES= www + +MAINTAINER= maintainer.freebsd@xpoundit.com +COMMENT= Embedded C/C++ web server + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USES= cmake +USE_GITHUB= yes +USE_LDCONFIG= yes + +CMAKE_OFF= CIVETWEB_BUILD_TESTING +CMAKE_ON= BUILD_SHARED_LIBS CIVETWEB_ENABLE_IPV6 CIVETWEB_ENABLE_SSL + +.include diff --git a/www/civetweb/distinfo b/www/civetweb/distinfo new file mode 100644 index 000000000000..96ea15e1a95d --- /dev/null +++ b/www/civetweb/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1620823043 +SHA256 (civetweb-civetweb-v1.14_GH0.tar.gz) = d02d7ab091c8b4edf21fc13a03c6db08a8a8b8605e35e0073251b9d88443c653 +SIZE (civetweb-civetweb-v1.14_GH0.tar.gz) = 12116842 diff --git a/www/civetweb/pkg-descr b/www/civetweb/pkg-descr new file mode 100644 index 000000000000..e2c4fca9e0c5 --- /dev/null +++ b/www/civetweb/pkg-descr @@ -0,0 +1,3 @@ +Embedded C/C++ web server + +WWW: https://github.com/civetweb/civetweb diff --git a/www/civetweb/pkg-plist b/www/civetweb/pkg-plist new file mode 100644 index 000000000000..29cac23fe22a --- /dev/null +++ b/www/civetweb/pkg-plist @@ -0,0 +1,11 @@ +bin/civetweb +include/civetweb.h +lib/cmake/civetweb/FindLibDl.cmake +lib/cmake/civetweb/FindLibRt.cmake +lib/cmake/civetweb/FindWinSock.cmake +lib/cmake/civetweb/civetweb-config-version.cmake +lib/cmake/civetweb/civetweb-config.cmake +lib/cmake/civetweb/civetweb-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/civetweb/civetweb-targets.cmake +lib/libcivetweb.so +lib/libcivetweb.so.1.14.0