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 F285F13933E for ; Thu, 8 Jul 2021 11:07:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46ABDE0B5E; Thu, 8 Jul 2021 11:07:22 +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 2D8F7E0B5E for ; Thu, 8 Jul 2021 11:07:22 +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 2DB02342A9C for ; Thu, 8 Jul 2021 11:07:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF7D77C9 for ; Thu, 8 Jul 2021 11:07:19 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1625682260.9382c22fd671cafd6d7edb407c127726bfafbc9a.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-misc/gmid/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-misc/gmid/gmid-9999.ebuild X-VCS-Directories: net-misc/gmid/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 9382c22fd671cafd6d7edb407c127726bfafbc9a X-VCS-Branch: master Date: Thu, 8 Jul 2021 11:07:19 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f6eb4125-defa-4368-bd5b-28285b878b97 X-Archives-Hash: c95a91a3a9dd365d13d5293a51ddc924 commit: 9382c22fd671cafd6d7edb407c127726bfafbc9a Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Jul 7 18:17:50 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Jul 7 18:24:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9382c22f net-misc/gmid: update 9999 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> net-misc/gmid/gmid-9999.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/net-misc/gmid/gmid-9999.ebuild b/net-misc/gmid/gmid-9999.ebuild index 4818aacdb..a255941c3 100644 --- a/net-misc/gmid/gmid-9999.ebuild +++ b/net-misc/gmid/gmid-9999.ebuild @@ -10,7 +10,7 @@ DESCRIPTION="Simple and secure Gemini server" HOMEPAGE="https://www.omarpolo.com/pages/gmid.html" EGIT_REPO_URI="https://github.com/omar-polo/${PN}.git https://git.omarpolo.com/${PN}" -LICENSE="ISC" +LICENSE="BSD ISC MIT" SLOT="0" IUSE="+seccomp test" RESTRICT=" @@ -20,6 +20,7 @@ RESTRICT=" DEPEND=" acct-user/gemini + dev-libs/imsg-compat dev-libs/libevent dev-libs/libretls " @@ -33,18 +34,14 @@ DOCS=( README.md ChangeLog ) src_configure() { local conf_args + tc-export CC # note: not an autoconf configure script conf_args=( - CC="$(tc-getCC)" PREFIX="${EPREFIX}"/usr/share BINDIR="${EPREFIX}"/usr/bin - CFLAGS="${CFLAGS}" - LDFLAGS="${LDFLAGS} -ltls -lssl -lcrypto -levent" + $(use_enable seccomp sandbox) ) - if ! use seccomp ; then - conf_args+=( --disable-sandbox ) - fi ./configure "${conf_args[@]}" || die }