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 23A151586A6 for ; Tue, 17 Aug 2021 17:10:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F7BBE07B3; Tue, 17 Aug 2021 17:10:45 +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 ACDB1E07B3 for ; Tue, 17 Aug 2021 17:10:44 +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 9E7BF3404AD for ; Tue, 17 Aug 2021 17:10:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC1DA63F for ; Tue, 17 Aug 2021 17:10:41 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1629220219.6c249aeddfa46bcba7b83eecb8d65513f77602f0.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/oidentd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/oidentd/oidentd-3.0.0-r1.ebuild X-VCS-Directories: net-misc/oidentd/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 6c249aeddfa46bcba7b83eecb8d65513f77602f0 X-VCS-Branch: master Date: Tue, 17 Aug 2021 17:10:41 +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: bab1b521-54a3-4eba-aa34-1119623469af X-Archives-Hash: 8127c8fd4386eafcdca50bc095c53a95 commit: 6c249aeddfa46bcba7b83eecb8d65513f77602f0 Author: Conrad Kostecki gentoo org> AuthorDate: Tue Aug 17 17:08:40 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Aug 17 17:10:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c249aed net-misc/oidentd: add missing deps Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> net-misc/oidentd/oidentd-3.0.0-r1.ebuild | 57 ++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/net-misc/oidentd/oidentd-3.0.0-r1.ebuild b/net-misc/oidentd/oidentd-3.0.0-r1.ebuild new file mode 100644 index 00000000000..614fff09c55 --- /dev/null +++ b/net-misc/oidentd/oidentd-3.0.0-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit systemd + +DESCRIPTION="Another (RFC1413 compliant) ident daemon" +HOMEPAGE="https://oidentd.janikrabe.com/" +SRC_URI="https://files.janikrabe.com/pub/${PN}/releases/${PV}/${P}.tar.xz" + +LICENSE="BSD-2 GPL-2 LGPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="debug ipv6 masquerade selinux" + +DEPEND="masquerade? ( net-libs/libnetfilter_conntrack )" + +RDEPEND=" + ${DEPEND} + acct-user/oidentd + acct-group/oidentd + selinux? ( sec-policy/selinux-oident ) +" + +BDEPEND=" + sys-devel/bison + sys-devel/flex +" + +src_prepare() { + sed -i '/ExecStart/ s|$| -u oidentd -g oidentd|' contrib/systemd/*.service || die + + default +} + +src_configure() { + local myconf=( + $(use_enable debug) + $(use_enable ipv6) + $(use_enable masquerade libnfct) + $(use_enable masquerade nat) + --enable-xdgbdir + ) + econf "${myconf[@]}" +} + +src_install() { + default + + newinitd "${FILESDIR}"/${PN}-2.0.7-init ${PN} + newconfd "${FILESDIR}"/${PN}-2.2.2-confd ${PN} + + systemd_dounit contrib/systemd/${PN}@.service + systemd_dounit contrib/systemd/${PN}.socket + systemd_dounit contrib/systemd/${PN}.service +}