blob: 918f287991dcfbc584bd4bb2c86e4a31bb13b856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild,v 1.8 2005/04/24 03:04:30 hansmi Exp $
DESCRIPTION="tool to reliably distribute binary data using UDP broadcasting techniques"
HOMEPAGE="http://home.t-online.de/home/gerd.o/netpipe.html"
SRC_URI="http://home.t-online.de/home/gerd.o/netpipe.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
DEPEND="virtual/libc"
S="${WORKDIR}/netpipe"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e "s:^OPT=.*:OPT = ${CFLAGS}:" \
-e "s:^#CC.*:CC = $(tc-getCC):" \
Makefile
}
src_compile() {
make || die
}
src_install() {
dobin netpipe || die
dodoc DOCUMENTATION INSTALL TECH-NOTES
}
|