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 CCAD8158092 for ; Sun, 19 Sep 2021 03:45:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B486E0937; Sun, 19 Sep 2021 03:45:46 +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-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 11AF4E0937 for ; Sun, 19 Sep 2021 03:45:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 33C1C342DCE for ; Sun, 19 Sep 2021 03:45:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDB2CCF for ; Sun, 19 Sep 2021 03:45:43 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1632023133.a3f5a4b410f296fa22b94cb29c5d75370c894fe7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/mrouted/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/mrouted/Manifest net-misc/mrouted/mrouted-4.3.ebuild X-VCS-Directories: net-misc/mrouted/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a3f5a4b410f296fa22b94cb29c5d75370c894fe7 X-VCS-Branch: master Date: Sun, 19 Sep 2021 03:45:43 +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: 21911b29-cc7b-48a9-adb7-53206783df20 X-Archives-Hash: cb8c9368473646245cf127cc510066b0 commit: a3f5a4b410f296fa22b94cb29c5d75370c894fe7 Author: Sam James gentoo org> AuthorDate: Sun Sep 19 03:45:12 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 19 03:45:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3f5a4b4 net-misc/mrouted: add 4.3 Signed-off-by: Sam James gentoo.org> net-misc/mrouted/Manifest | 1 + net-misc/mrouted/mrouted-4.3.ebuild | 38 +++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/net-misc/mrouted/Manifest b/net-misc/mrouted/Manifest index ed1cb10ee72..1cfb8461df9 100644 --- a/net-misc/mrouted/Manifest +++ b/net-misc/mrouted/Manifest @@ -1 +1,2 @@ DIST mrouted-4.2.tar.gz 292640 BLAKE2B 5d356c7c0132e2dc74e360c5a1761b6e39bcdfcb5306dcd7a8a35f5658139bdd74d92587b7fea248092bd4947b5119987bdf4066676c08c6baa849c1845f905b SHA512 88de66f24210bcf9d8e9ab0d38171c64c7dae2981fb2f81a54be2b08bbe26ff9b26ad5a7ec0fd4d67c2dad00a6df608aa7c1536c897bbc98f6bf223766924131 +DIST mrouted-4.3.tar.gz 327278 BLAKE2B 3f9182f90170868c0c770cb07ac8d6cfb5a8dce305a9b5e3bb9881e238cbdb246389225fb1524a0765a4c2725402546e07945a406edd78c5c6dd3272a16f263d SHA512 c471e95f5ce6ff017d269ab3005741ecbf1c41931da07f584bf9e28799c3cbbeeb57d8c517dd2fa342b63a460fb4df8f7f7db53312480059509a9d64b5e765b6 diff --git a/net-misc/mrouted/mrouted-4.3.ebuild b/net-misc/mrouted/mrouted-4.3.ebuild new file mode 100644 index 00000000000..f46a82c1faf --- /dev/null +++ b/net-misc/mrouted/mrouted-4.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs systemd + +DESCRIPTION="IP multicast routing daemon" +HOMEPAGE="https://troglobit.com/projects/mrouted/" +SRC_URI="https://github.com/troglobit/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="Stanford GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="rsrr" + +BDEPEND="virtual/pkgconfig + virtual/yacc" + +src_configure() { + tc-export CC CXX + + econf $(usex rsrr --enable-rsrr '') +} + +src_compile() { + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" +} + +src_install() { + default + + insinto /etc + doins mrouted.conf + + newinitd "${FILESDIR}"/mrouted.rc mrouted + systemd_dounit mrouted.service +}