blob: 0cfc643a9aaaace387252abdbfc5bcc2db2a83f4 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ipsorcery/ipsorcery-2.0.9-r1.ebuild,v 1.6 2011/01/10 19:35:50 ranger Exp $
EAPI=2
inherit toolchain-funcs
DESCRIPTION="Ipsorcery allows you to generate IP, TCP, UDP, ICMP, and IGMP packets"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/ipsorc-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE=""
S=${WORKDIR}/ipsorc-${PV}
src_prepare() {
sed -i \
-e 's:-g -O2:$(LDFLAGS) $(CFLAGS):' \
Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)" con || die
}
src_install() {
dosbin ipmagic || die
dodoc BUGS changelog HOWTO README
}
|