blob: b736a17d3415a686a40e8a3bcb5f32f6712765e3 (
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
37
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/pipes/pipes-1.16.ebuild,v 1.6 2004/09/03 14:01:53 dholm 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 s390 ~ppc"
IUSE=""
RDEPEND="virtual/libc"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e "s:-O2:${CFLAGS}:" Makefile || \
die "sed Makefile failed"
touch .depend
}
src_compile() {
emake || die "emake failed"
}
src_install() {
dobin plis || die "dobin failed"
dohard /usr/bin/plis /usr/bin/pcon || die "dohard failed"
dodoc Examples ChangeLog
dohtml README.html
}
|