22 lines
463 B
Bash
22 lines
463 B
Bash
|
# Copyright 1999-2020 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
|
||
|
DESCRIPTION="ISC dhcpd lease analysis and reporting"
|
||
|
HOMEPAGE="http://dhcpd-pools.sf.net"
|
||
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
|
||
|
|
||
|
LICENSE="BSD-2"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
IUSE="doc"
|
||
|
|
||
|
DEPEND="dev-libs/uthash
|
||
|
doc? ( app-doc/doxygen )"
|
||
|
RDEPEND=""
|
||
|
|
||
|
src_configure() {
|
||
|
econf $(use_enable doc doxygen) --with-dhcpd-conf=/etc/dhcp/dhcpd.conf
|
||
|
}
|