gentoo-ebuilds/net-misc/datapipe/datapipe-1.0-r2.ebuild
Michael Mair-Keimberger 8ea6fe12d3
net-misc/datapipe: EAPI8 bump, use HTTPS
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/30769
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
2023-04-30 00:15:59 +02:00

25 lines
610 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Bind a local port and connect it to a remote socket"
HOMEPAGE="https://http.distributed.net/pub/dcti/unsupported/"
SRC_URI="ftp://ftp.distributed.net/pub/dcti/unsupported/${P}.tar.gz
https://http.distributed.net/pub/dcti/unsupported/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
src_compile() {
$(tc-getCC) ${CFLAGS} ${LDFLAGS} -o datapipe datapipe.c
}
src_install() {
einstalldocs
dobin datapipe
dodoc datapipe.txt
}