blob: 4bcdb5ae2887e33c3ea1ffd24d5be91924dd8c71 (
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
57
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic toolchain-funcs
DESCRIPTION="Discover DHCP and BootP servers on a directly-attached Ethernet network"
HOMEPAGE="https://www.net.princeton.edu/software/dhcp_probe/"
SRC_URI="https://www.net.princeton.edu/software/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="net-libs/libpcap
>=net-libs/libnet-1.1.2.1-r2"
RDEPEND="${DEPEND}"
DOCS=(
AUTHORS
ChangeLog
NEWS
README
TODO
extras/dhcp_probe.cf.sample
)
PATCHES=(
"${FILESDIR}"/${PN}-1.3.1-respect-AR.patch
"${FILESDIR}"/${PN}-1.3.1-fix-configure-CPP.patch
)
src_prepare() {
default
# for AR patch
eautoreconf
}
src_configure() {
# configure uses CPP
tc-export CPP
use amd64 && append-cppflags -D__ARCH__=64
STRIP=true econf
}
src_install() {
default
dodoc "${FILESDIR}"/${PN}_mail
newinitd "${FILESDIR}"/${PN}.initd ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
}
|