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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 927F215800F for ; Sat, 4 Feb 2023 17:43:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E18A9E041F; Sat, 4 Feb 2023 17:43:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C415EE041F for ; Sat, 4 Feb 2023 17:43:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D003A335C36 for ; Sat, 4 Feb 2023 17:43:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3EC73889 for ; Sat, 4 Feb 2023 17:43:31 +0000 (UTC) From: "Hanno Böck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Böck" Message-ID: <1675532578.27a036af17ab8f4257289448e14847e4880fe645.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/zdkimfilter/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/zdkimfilter/zdkimfilter-3.13-r1.ebuild X-VCS-Directories: mail-filter/zdkimfilter/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Böck X-VCS-Revision: 27a036af17ab8f4257289448e14847e4880fe645 X-VCS-Branch: master Date: Sat, 4 Feb 2023 17:43:31 +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: 0ff0b216-60a0-415d-97ae-8f23ce3a3e15 X-Archives-Hash: 9a817b159db26200e31114d4fbaa684a commit: 27a036af17ab8f4257289448e14847e4880fe645 Author: Hanno Böck gentoo org> AuthorDate: Sat Feb 4 17:42:58 2023 +0000 Commit: Hanno Böck gentoo org> CommitDate: Sat Feb 4 17:42:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27a036af mail-filter/zdkimfilter: Add missing libbsd dep. Signed-off-by: Hanno Böck gentoo.org> Closes: https://bugs.gentoo.org/893216 mail-filter/zdkimfilter/zdkimfilter-3.13-r1.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/mail-filter/zdkimfilter/zdkimfilter-3.13-r1.ebuild b/mail-filter/zdkimfilter/zdkimfilter-3.13-r1.ebuild new file mode 100644 index 000000000000..495b98b46cd9 --- /dev/null +++ b/mail-filter/zdkimfilter/zdkimfilter-3.13-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +DESCRIPTION="DKIM filter for Courier-MTA" +HOMEPAGE="https://www.tana.it/sw/zdkimfilter" +SRC_URI="https://www.tana.it/sw/zdkimfilter/${P}.tar.gz" +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="debug" + +DEPEND="net-libs/gnutls + mail-mta/courier + dev-db/opendbx + dev-libs/nettle:= + net-dns/libidn2:= + dev-libs/libunistring:= + dev-libs/libbsd" +RDEPEND="${DEPEND}" + +# Tests don't work with portage sandbox +RESTRICT="test" + +src_configure() { + econf $(use_enable debug) +} + +src_install() { + emake DESTDIR="${D}" install + diropts -o mail -g mail + dodir /etc/courier/filters/keys + dodoc release-notes-*.txt README ChangeLog + dodoc odbx_example.{conf,sql} +}