From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3030F1396D9 for ; Mon, 13 Nov 2017 06:29:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F4BBE0ED8; Mon, 13 Nov 2017 06:29:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1E667E0ED8 for ; Mon, 13 Nov 2017 06:29:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD79333BE68 for ; Mon, 13 Nov 2017 06:29:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4735098C1 for ; Mon, 13 Nov 2017 06:29:00 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1510554496.5da658803c6817e7df3e9661321c2c2694ba6de0.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/civetweb/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/civetweb/Manifest www-servers/civetweb/civetweb-1.10.ebuild www-servers/civetweb/metadata.xml X-VCS-Directories: www-servers/civetweb/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 5da658803c6817e7df3e9661321c2c2694ba6de0 X-VCS-Branch: master Date: Mon, 13 Nov 2017 06:29:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a2dcb8ff-5e0a-4619-90fb-5ffb93ab6bb0 X-Archives-Hash: 6ef5e3843d4e1c38dc6bd33a55f94288 commit: 5da658803c6817e7df3e9661321c2c2694ba6de0 Author: Zac Medico gentoo org> AuthorDate: Mon Nov 13 06:22:49 2017 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Nov 13 06:28:16 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5da65880 www-servers/civetweb: new package Package-Manager: Portage-2.3.13, Repoman-2.3.3 www-servers/civetweb/Manifest | 1 + www-servers/civetweb/civetweb-1.10.ebuild | 36 +++++++++++++++++++++++++++++++ www-servers/civetweb/metadata.xml | 10 +++++++++ 3 files changed, 47 insertions(+) diff --git a/www-servers/civetweb/Manifest b/www-servers/civetweb/Manifest new file mode 100644 index 00000000000..4ceadc2eb8a --- /dev/null +++ b/www-servers/civetweb/Manifest @@ -0,0 +1 @@ +DIST civetweb-1.10.tar.gz 11350512 SHA256 e6958f005aa01b02645bd3ff9760dd085e83d30530cdd97b584632419195bea5 SHA512 54035883fbec590f339a2b4b5bf1b9a93591ea50bff056830d0c45b874cf6e46ce5af39e9dd9d4e0e6c82bec844aa0f159503f337998e9e10e59099b8ecc3f79 WHIRLPOOL 3a2b45f36188612215b4fb2d1d85aa8e88677399f2065c19ef9c903a011434d44f47b1115862b2d7b4bda471feb6427879a454b5c1032ed28754afee1fd7c55e diff --git a/www-servers/civetweb/civetweb-1.10.ebuild b/www-servers/civetweb/civetweb-1.10.ebuild new file mode 100644 index 00000000000..62190ba870b --- /dev/null +++ b/www-servers/civetweb/civetweb-1.10.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +HOMEPAGE="https://github.com/civetweb/civetweb/" +DESCRIPTION="Embedded C/C++ web server" +SRC_URI="https://github.com/civetweb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ssl" + +RDEPEND="ssl? ( dev-libs/openssl:0= )" +DEPEND="${RDEPEND}" + +src_prepare() { + sed -e 's|DESTINATION lib$|DESTINATION ${CMAKE_INSTALL_LIBDIR}|' \ + -i src/CMakeLists.txt || die + cmake-utils_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=OFF + -DBUILD_SHARED_LIBS=ON + -DCIVETWEB_ENABLE_LUA=OFF + -DCIVETWEB_ENABLE_DUKTAPE=OFF + -DCIVETWEB_ENABLE_SSL="$(usex ssl)" + ) + + cmake-utils_src_configure +} diff --git a/www-servers/civetweb/metadata.xml b/www-servers/civetweb/metadata.xml new file mode 100644 index 00000000000..da48c00830a --- /dev/null +++ b/www-servers/civetweb/metadata.xml @@ -0,0 +1,10 @@ + + + + + civetweb/civetweb + + + zmedico@gentoo.org + +