mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 06:35:19 +02:00
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Ulrich Müller <ulm@gentoo.org>
31 lines
655 B
Bash
31 lines
655 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Very versatile TCP pipes"
|
|
HOMEPAGE="https://bisqwit.iki.fi/source/pipes.html"
|
|
SRC_URI="https://bisqwit.iki.fi/src/arch/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ~s390 x86"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-execlp.patch
|
|
)
|
|
|
|
src_compile() {
|
|
# Prevent the build system from looking for dependencies
|
|
touch .depend || die
|
|
|
|
emake CC="$(tc-getCC)" OPTIM="${CFLAGS}" LDFLAGS="${CFLAGS} ${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
dobin plis
|
|
dosym plis /usr/bin/pcon
|
|
dodoc ChangeLog Examples README.html
|
|
}
|