developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
28 lines
886 B
Makefile
28 lines
886 B
Makefile
# $NetBSD: Makefile,v 1.9 2006/03/04 21:30:17 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= CMU-dhcp-3.3.7+PU-9
|
|
PKGNAME= cmu-dhcpd-3.3.7.9
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://heymon.princeton.edu/software/dhcpd/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://heymon.princeton.edu/software/dhcpd/
|
|
COMMENT= CMU BootP and DHCP server, plus Princeton patches
|
|
|
|
NOT_FOR_PLATFORM= Interix-*-* # no userland routing table support
|
|
|
|
WRKSRC= ${WRKDIR}/CMU-dhcp-3.3.7+PU-9
|
|
GNU_CONFIGURE= YES
|
|
|
|
INSTALLATION_DIRS= man/man5 man/man8 sbin
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} /var/db/bindings
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dhcpd ${PREFIX}/sbin/cmu-dhcpd
|
|
${INSTALL_MAN} ${WRKSRC}/man/bootptab.5 ${PREFIX}/man/man5/bootptab.5
|
|
${INSTALL_MAN} ${WRKSRC}/man/dhcpd.8 ${PREFIX}/man/man8/dhcpd.8
|
|
${INSTALL_MAN} ${WRKSRC}/man/dhcpd.conf.5 ${PREFIX}/man/man5/dhcpd.conf.5
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|