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 9FEA7138335 for ; Fri, 6 Jul 2018 21:48:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB59DE092A; Fri, 6 Jul 2018 21:48:28 +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 9BF21E092A for ; Fri, 6 Jul 2018 21:48:28 +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 DC6FC335C8B for ; Fri, 6 Jul 2018 21:48:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F19B9362 for ; Fri, 6 Jul 2018 21:48:24 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1530913673.93732127da94577948bdc3bad38d0f344854b4b5.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/netpipe/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild X-VCS-Directories: net-misc/netpipe/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 93732127da94577948bdc3bad38d0f344854b4b5 X-VCS-Branch: master Date: Fri, 6 Jul 2018 21:48:24 +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-Archives-Salt: 25067c41-8d7d-43c8-bfe1-1287d5d6c492 X-Archives-Hash: 70c4019d5a5d1cabe683c86da72507ed commit: 93732127da94577948bdc3bad38d0f344854b4b5 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Jun 24 15:23:36 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jul 6 21:47:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93732127 net-misc/netpipe: EAPI7, improve ebuild net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild | 30 ++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild b/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild new file mode 100644 index 00000000000..dbdaac08b10 --- /dev/null +++ b/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="tool to reliably distribute binary data using UDP broadcasting techniques" +HOMEPAGE="https://www.wudika.de/~jan/netpipe/" +SRC_URI="https://www.wudika.de/~jan/${PN}/${PN}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +S="${WORKDIR}/${PN}" + +src_prepare() { + sed -i \ + -e "s:^OPT=.*:OPT = ${CFLAGS} ${LDFLAGS}:" \ + -e "s:^CC=.*:CC = $(tc-getCC):" \ + Makefile || die "sed failed" + default +} + +src_install() { + dobin netpipe + dodoc DOCUMENTATION INSTALL TECH-NOTES +}