summaryrefslogtreecommitdiff
blob: b5e378a8ac0df923e59bb3906537ca2b9aaf5c08 (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07.ebuild,v 1.2 2007/03/20 14:34:06 armin76 Exp $

inherit eutils

DESCRIPTION="IP Stack Integrity Checker"
HOMEPAGE="http://isic.sourceforge.net/"
SRC_URI="mirror://sourceforge/isic/${P}.tgz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""

DEPEND=">=net-libs/libnet-1.1"

src_compile() {
	econf --prefix="${D}/usr" --exec_prefix="${D}/usr" || die "configure died"
	emake || die "make failed"
}

src_install() {
	make install || die "make install failed"
	dodoc README
}