mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
f7b283b262
Optimized version. Less system CPU time used.
35 lines
658 B
Makefile
35 lines
658 B
Makefile
# New ports collection makefile for: dhcprelya
|
|
# Date created: 17 December 2007
|
|
# Whom: Sergey Matveychuk <sem@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dhcprelya
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://people.yandex-team.ru/~sem/
|
|
|
|
MAINTAINER= sem@FreeBSD.org
|
|
COMMENT= Lightweigh DHCP relay agent. Yandex edition
|
|
|
|
USE_RC_SUBR= dhcprelya
|
|
|
|
PORTDOCS= README
|
|
|
|
PLIST_FILES= sbin/${PORTNAME}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 600000
|
|
IGNORE= require pidfile_* finctions in libutils
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|