diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-24 12:55:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-24 12:55:42 +0000 |
commit | 060da861ca9ea47c78709095600b2d0c1c9b7b31 (patch) | |
tree | 5cba91237e38b61b7304998ddde0f837c7a49474 | |
parent | now in net-misc (diff) | |
download | historical-060da861ca9ea47c78709095600b2d0c1c9b7b31.tar.gz historical-060da861ca9ea47c78709095600b2d0c1c9b7b31.tar.bz2 historical-060da861ca9ea47c78709095600b2d0c1c9b7b31.zip |
now in net-misc
-rw-r--r-- | net-misc/pipes/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/pipes/Manifest | 3 | ||||
-rw-r--r-- | net-misc/pipes/files/digest-pipes-1.15 | 1 | ||||
-rw-r--r-- | net-misc/pipes/pipes-1.15.ebuild | 32 |
4 files changed, 44 insertions, 0 deletions
diff --git a/net-misc/pipes/ChangeLog b/net-misc/pipes/ChangeLog new file mode 100644 index 000000000000..2147daad6a1e --- /dev/null +++ b/net-misc/pipes/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-analyzer/pipes +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/pipes/ChangeLog,v 1.1 2003/09/24 12:55:42 vapier Exp $ + +*pipes-1.15 (22 Sep 2003) + + 22 Sep 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by Joel Yliluoma <bisqwit@iki.fi> #28462. diff --git a/net-misc/pipes/Manifest b/net-misc/pipes/Manifest new file mode 100644 index 000000000000..0cca2aeded6a --- /dev/null +++ b/net-misc/pipes/Manifest @@ -0,0 +1,3 @@ +MD5 a804c7202d00ece8dede77488419d5b7 ChangeLog 375 +MD5 c1af5165389c38a18b411b9e2195176f pipes-1.15.ebuild 678 +MD5 8f67f91e26e89260f8a7e59033eb88a4 files/digest-pipes-1.15 62 diff --git a/net-misc/pipes/files/digest-pipes-1.15 b/net-misc/pipes/files/digest-pipes-1.15 new file mode 100644 index 000000000000..e77e3fc7ed90 --- /dev/null +++ b/net-misc/pipes/files/digest-pipes-1.15 @@ -0,0 +1 @@ +MD5 c08393cd52c7be9e48d7b4fb2e8e56a4 pipes-1.15.tar.bz2 20856 diff --git a/net-misc/pipes/pipes-1.15.ebuild b/net-misc/pipes/pipes-1.15.ebuild new file mode 100644 index 000000000000..19a550550863 --- /dev/null +++ b/net-misc/pipes/pipes-1.15.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/pipes/pipes-1.15.ebuild,v 1.1 2003/09/24 12:55:42 vapier Exp $ + +DESCRIPTION="Very versatile TCP pipes" +HOMEPAGE="http://bisqwit.iki.fi/source/pipes.html" +SRC_URI="http://bisqwit.iki.fi/src/arch/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + cd ${S} + + sed -i "s:-O2:${CFLAGS}:" Makefile + touch .depend +} + +src_compile() { + emake || die +} + +src_install() { + dobin plis + dohard /usr/bin/plis /usr/bin/pcon + dodoc Examples ChangeLog + dohtml README.html +} |