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 17A82138335 for ; Thu, 28 Jun 2018 10:46:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E87FEE0877; Thu, 28 Jun 2018 10:46:27 +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 BED52E0877 for ; Thu, 28 Jun 2018 10:46:27 +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 3CEDD335CA6 for ; Thu, 28 Jun 2018 10:46:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 112042B3 for ; Thu, 28 Jun 2018 10:46:23 +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: <1530182774.268cc9c9d632a28c6319ea9aaf175deb18dee281.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/datapipe/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/datapipe/datapipe-1.0-r2.ebuild X-VCS-Directories: net-misc/datapipe/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 268cc9c9d632a28c6319ea9aaf175deb18dee281 X-VCS-Branch: master Date: Thu, 28 Jun 2018 10:46:23 +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: 5bb46003-9de3-435d-ad24-0b00f95e85ad X-Archives-Hash: 27773b3a865d1da9814ae38e8bd34209 commit: 268cc9c9d632a28c6319ea9aaf175deb18dee281 Author: Patrice Clement gentoo org> AuthorDate: Wed Jun 27 22:32:53 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Jun 28 10:46:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=268cc9c9 net-misc/datapipe: EAPI 6 bump. Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-misc/datapipe/datapipe-1.0-r2.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/net-misc/datapipe/datapipe-1.0-r2.ebuild b/net-misc/datapipe/datapipe-1.0-r2.ebuild new file mode 100644 index 00000000000..503b4e44826 --- /dev/null +++ b/net-misc/datapipe/datapipe-1.0-r2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="bind a local port and connect it to a remote socket" +HOMEPAGE="http://http.distributed.net/pub/dcti/unsupported/" +SRC_URI="ftp://ftp.distributed.net/pub/dcti/unsupported/${P}.tar.gz http://http.distributed.net/pub/dcti/unsupported/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~x86 ~ppc ~arm ~amd64" + +src_compile() { + $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o datapipe datapipe.c +} + +src_install() { + einstalldocs + dobin datapipe + dodoc datapipe.txt +}