diff options
Diffstat (limited to 'net-misc/netpipe')
-rw-r--r-- | net-misc/netpipe/ChangeLog | 12 | ||||
-rw-r--r-- | net-misc/netpipe/files/digest-netpipe-1.0.0_beta2 | 1 | ||||
-rw-r--r-- | net-misc/netpipe/netpipe-1.0.0_beta2.ebuild | 36 |
3 files changed, 49 insertions, 0 deletions
diff --git a/net-misc/netpipe/ChangeLog b/net-misc/netpipe/ChangeLog new file mode 100644 index 000000000000..5ed39b3c0f36 --- /dev/null +++ b/net-misc/netpipe/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for net-misc/netpipe +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/netpipe/ChangeLog,v 1.1 2003/02/11 22:27:50 zwelch Exp $ + +*netpipe-1.0.0_beta1 (08 Feb 2003) + + 08 Feb 2003; Zach Welch <zwelch@gentoo.org> : + Commit to portage + + 08 Feb 2003; Matthias Schwarzott <zzam@gmx.de> : + Submitted via bugs.gentoo.org, bug 15005 + diff --git a/net-misc/netpipe/files/digest-netpipe-1.0.0_beta2 b/net-misc/netpipe/files/digest-netpipe-1.0.0_beta2 new file mode 100644 index 000000000000..5dffa34593d0 --- /dev/null +++ b/net-misc/netpipe/files/digest-netpipe-1.0.0_beta2 @@ -0,0 +1 @@ +MD5 bacff5846946f15db5aa7e76f7f4b797 netpipe.tar.gz 30593 diff --git a/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild b/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild new file mode 100644 index 000000000000..5b35222fdbdd --- /dev/null +++ b/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild @@ -0,0 +1,36 @@ +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# 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.1 2003/02/11 22:27:50 zwelch 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 +} |