Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/datapipe/
Date: Thu, 28 Jun 2018 10:46:29
Message-Id: 1530182774.268cc9c9d632a28c6319ea9aaf175deb18dee281.monsieurp@gentoo
1 commit: 268cc9c9d632a28c6319ea9aaf175deb18dee281
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 27 22:32:53 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 28 10:46:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=268cc9c9
7
8 net-misc/datapipe: EAPI 6 bump.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 net-misc/datapipe/datapipe-1.0-r2.ebuild | 24 ++++++++++++++++++++++++
13 1 file changed, 24 insertions(+)
14
15 diff --git a/net-misc/datapipe/datapipe-1.0-r2.ebuild b/net-misc/datapipe/datapipe-1.0-r2.ebuild
16 new file mode 100644
17 index 00000000000..503b4e44826
18 --- /dev/null
19 +++ b/net-misc/datapipe/datapipe-1.0-r2.ebuild
20 @@ -0,0 +1,24 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit toolchain-funcs
27 +
28 +DESCRIPTION="bind a local port and connect it to a remote socket"
29 +HOMEPAGE="http://http.distributed.net/pub/dcti/unsupported/"
30 +SRC_URI="ftp://ftp.distributed.net/pub/dcti/unsupported/${P}.tar.gz http://http.distributed.net/pub/dcti/unsupported/${P}.tar.gz"
31 +
32 +LICENSE="public-domain"
33 +SLOT="0"
34 +KEYWORDS="~x86 ~ppc ~arm ~amd64"
35 +
36 +src_compile() {
37 + $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o datapipe datapipe.c
38 +}
39 +
40 +src_install() {
41 + einstalldocs
42 + dobin datapipe
43 + dodoc datapipe.txt
44 +}