blob: 21a2685576478e8b9daab5426672424e3468051c (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# NOTE: netwib, netwox and netwag go together, bump all or bump none
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Library of Ethernet, IP, UDP, TCP, ICMP, ARP and RARP protocols"
HOMEPAGE="
http://www.laurentconstantin.com/en/netw/netwib/
http://ntwib.sourceforge.net/
"
SRC_URI="
mirror://sourceforge/ntwib/${P}-src.tgz
doc? ( mirror://sourceforge/ntwib/${P}-doc_html.tgz )"
S="${WORKDIR}/${P}-src/src"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc x86"
IUSE="doc"
DEPEND="
net-libs/libnet:1.1
net-libs/libpcap"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-C99-decls.patch
"${FILESDIR}"/${P}-config.patch
"${FILESDIR}"/${P}-sched_yield.patch
)
src_configure() {
tc-export AR CC RANLIB
sed -e "s:/lib:/$(get_libdir):" \
-i config.dat || die
sh genemake || die
}
src_install() {
default
dodoc \
../README.TXT \
../doc/{changelog.txt,credits.txt,integration.txt} \
../doc/{problemreport.txt,problemusageunix.txt,todo.txt}
if use doc; then
docinto html
dodoc -r "${WORKDIR}"/${P}-doc_html/{index.html,${PN}}
fi
}
|