diff options
Diffstat (limited to 'net-misc/netsed/netsed-0.01b.ebuild')
-rw-r--r-- | net-misc/netsed/netsed-0.01b.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net-misc/netsed/netsed-0.01b.ebuild b/net-misc/netsed/netsed-0.01b.ebuild new file mode 100644 index 000000000000..2fd1ee7e4c39 --- /dev/null +++ b/net-misc/netsed/netsed-0.01b.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit eutils + +DESCRIPTION="Small tool for altering forwarded network data in real time" +HOMEPAGE="http://freshmeat.net/projects/netsed" +SRC_URI="http://dione.ids.pl/~lcamtuf/${PN}.tgz + http://http.us.debian.org/debian/pool/main/n/netsed/${PN}_0.01c-2.diff.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="amd64 ~x86" +IUSE="" + +DEPEND="" + +src_unpack() { + mkdir -p "${S}" + cd "${S}" + unpack ${A} +} + +src_compile() { + epatch "${DISTDIR}"/${PN}_0.01c-2.diff.gz + make CFLAGS="${CFLAGS}" +} + +src_install() { + dobin netsed + doman debian/netsed.1 + dodoc README +} |