blob: a657474810e406ab3618b782aa62fc3850541b48 (
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
35
36
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# ebuild created by Matthias Schwarzott <zzam@gmx.de>
# $Header: /var/cvsroot/gentoo-x86/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild,v 1.3 2003/07/13 14:31:36 aliz Exp $
IUSE=""
DESCRIPTION="tool to reliably distribute binary data using UDP broadcasting techniques"
SRC_URI="http://home.t-online.de/home/gerd.o/netpipe.tar.gz"
HOMEPAGE="http://home.t-online.de/home/gerd.o/netpipe.html"
DEPEND="virtual/glibc"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
S="${WORKDIR}/netpipe"
src_unpack() {
unpack ${A} ; cd ${S}
mv Makefile Makefile.orig
sed -e "s:^OPT=.*:OPT = ${CFLAGS}:" \
-e "s:^#CC.*:CC = gcc:" \
Makefile.orig > Makefile
}
src_compile() {
make || die
}
src_install () {
dobin netpipe
dodoc DOCUMENTATION INSTALL TECH-NOTES
}
|