2012-02-06 16:39:49 +04:00
|
|
|
# Copyright 1999-2010 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2012-02-06 16:39:49 +04:00
|
|
|
|
|
|
|
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=""
|
|
|
|
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
|
|
|
|
}
|