mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Closes: https://bugs.gentoo.org/710710 Package-Manager: Portage-2.3.95, Repoman-2.3.21 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
31 lines
651 B
Bash
31 lines
651 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="tool to reliably distribute binary data using UDP broadcasting techniques"
|
|
HOMEPAGE="https://www.wudika.de/~jan/netpipe/"
|
|
SRC_URI="https://www.wudika.de/~jan/${PN}/${PN}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
src_prepare() {
|
|
sed -i \
|
|
-e "s|^OPT=.*|OPT = ${CFLAGS} ${LDFLAGS}|" \
|
|
-e "s|^CC=.*|CC = $(tc-getCC)|" \
|
|
Makefile || die "sed failed"
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
dobin netpipe
|
|
dodoc DOCUMENTATION INSTALL TECH-NOTES
|
|
}
|