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 A284D13933E for ; Wed, 7 Jul 2021 18:49:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E41F6E0B94; Wed, 7 Jul 2021 18:49:31 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 CCFBCE0B94 for ; Wed, 7 Jul 2021 18:49:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 8ABC3342BFA for ; Wed, 7 Jul 2021 18:49:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24FC5581 for ; Wed, 7 Jul 2021 18:49:29 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1625682260.9382c22fd671cafd6d7edb407c127726bfafbc9a.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev 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: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 9382c22fd671cafd6d7edb407c127726bfafbc9a X-VCS-Branch: dev Date: Wed, 7 Jul 2021 18:49:29 +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: 6f96c259-e745-441f-aac8-2f9103b9ef89 X-Archives-Hash: 038b8b50ee92516f23e9849d01642266 commit: 9382c22fd671cafd6d7edb407c127726bfafbc9a Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Jul 7 18:17:50 2021 +0000 Commit: Anna Vyalkova sysrq in> 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 }