blob: 5ca47204a1d6518de13fa180ad82f679a796c6ec (
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
35
36
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.07-r1.ebuild,v 1.6 2014/07/12 18:24:45 jer Exp $
EAPI=5
inherit toolchain-funcs
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"
DEPEND="net-libs/libnet:1.1"
RDEPEND="${DEPEND}"
DOCS=( ChangeLog README )
src_prepare() {
# Add two missing includes
echo "#include <netinet/udp.h>" >> isic.h || die
echo "#include <netinet/tcp.h>" >> isic.h || die
# Install man pages in /usr/share/man
sed -i -e 's|/man/man1|/share&|g' Makefile.in || die
tc-export CC
}
src_configure() {
# Build system does not know about DESTDIR
econf --prefix="${D}/usr" --exec_prefix="${D}/usr"
}
|