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 6DB85138332 for ; Sun, 15 Apr 2018 18:48:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BB57E07E0; Sun, 15 Apr 2018 18:48:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 3AB83E07A5 for ; Sun, 15 Apr 2018 18:48:15 +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 28316335C7E for ; Sun, 15 Apr 2018 18:48:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E02B257 for ; Sun, 15 Apr 2018 18:48:12 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1523818066.78f2dc7cabbf8c18570d9bae4818956aa2ae8c38.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/redir/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/redir/redir-2.2.1-r1.ebuild X-VCS-Directories: net-misc/redir/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 78f2dc7cabbf8c18570d9bae4818956aa2ae8c38 X-VCS-Branch: master Date: Sun, 15 Apr 2018 18:48:12 +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: f45ebf66-10f9-41f4-8c59-a8bb3babe6b1 X-Archives-Hash: db20b91f75cd4f656891eb3c239238bc commit: 78f2dc7cabbf8c18570d9bae4818956aa2ae8c38 Author: Patrice Clement gentoo org> AuthorDate: Sun Apr 15 18:30:30 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Apr 15 18:47:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78f2dc7c net-misc/redir: EAPI 6 bump. Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-misc/redir/redir-2.2.1-r1.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/net-misc/redir/redir-2.2.1-r1.ebuild b/net-misc/redir/redir-2.2.1-r1.ebuild new file mode 100644 index 00000000000..104aafdcf4c --- /dev/null +++ b/net-misc/redir/redir-2.2.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils toolchain-funcs + +DESCRIPTION="Redir is a port redirector" +HOMEPAGE="http://sammy.net/~sammy/hacks/" +SRC_URI="http://sammy.net/~sammy/hacks/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~sparc ~x86" + +PATCHES=( "${FILESDIR}/${P}-include.patch" ) +DOCS=( CHANGES README transproxy.txt ) + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" +} + +src_install() { + dobin "${PN}" + newman "${PN}.man" "${PN}.1" +}