blob: b821b6d25d40964df27ffca0651f40f74c1b50f2 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/netsed/netsed-0.01b.ebuild,v 1.10 2013/11/06 05:17:21 patrick Exp $
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
}
|