* docs: help screen & man page * docs: add missing full-html flag * headers: include-what-you-use fixes * other: free backup ranges * prepare_memory bug: initialization missing * licensing: use FreeBSD license (was GNUv3) * parse_leases: exit at read error * getdata: realloc instead of asserting * getdata: potential overflow due unit change * bug: use uint32_t for IP numbers * analyze: use more logical variable names * getdata: initialize memory * all: include-what-you-see fixes * analyze: debugging leftover removed * THANKS: add Ahmed AL Dakhil * maint: coding style fixes * output: change to full html behaviour * build-sys: autotools configure.ac update * docs: NEWS update * docs: remove version from manual page * licensing: set placeholder properly * bug: use uint32_t for IP numbers * build-sys: ignore gprof & gcov files * getdata: new xstrstr function for performance * other: fix two warnings * build-sys: update news for release v2.16
29 lines
830 B
Makefile
29 lines
830 B
Makefile
# $NetBSD: Makefile,v 1.3 2011/07/20 07:03:53 adam Exp $
|
|
|
|
DISTNAME= dhcpd-pools-2.16
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dhcpd-pools/}
|
|
|
|
MAINTAINER= adam@NetBSD.org
|
|
HOMEPAGE= http://dhcpd-pools.sourceforge.net/
|
|
COMMENT= ISC dhcpd lease analysis and reporting
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-dhcpd-leases=${VARBASE}/db/dhcpd.leases
|
|
|
|
BUILD_DEFS+= VARBASE
|
|
REPLACE_PERL= contrib/snmptest.pl
|
|
USE_TOOLS+= perl:run
|
|
|
|
SUBST_CLASSES+= fix-name
|
|
SUBST_STAGE.fix-name= pre-configure
|
|
SUBST_MESSAGE.fix-name= Removing program_invocation_short_name.
|
|
SUBST_FILES.fix-name= src/dhcpd-pools.c src/other.c src/sort.c
|
|
SUBST_SED.fix-name= -e 's,program_invocation_short_name,"dhcpd-pools",g'
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|