mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
491f5dced8
Approved by: skreuzer (mentor)
39 lines
803 B
Makefile
39 lines
803 B
Makefile
# New ports collection makefile for: ptpd
|
|
# Date created: 11 April 2012
|
|
# Whom: George V. Neville-Neil <gnn@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ptpd
|
|
DISTVERSION= 2-RC-0
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/${PORTNAME}/$(PORTNAME)/2-RC/
|
|
|
|
MAINTAINER= gnn@FreeBSD.org
|
|
COMMENT= Release candidate for the precision time protocol IEEE 1588-2008
|
|
|
|
LICENSE= BSD
|
|
|
|
WRKSRC= ${WRKDIR}/ptpd-${DISTVERSION}/src
|
|
|
|
CONFLICTS= ptpd-2.[0-9].*
|
|
LATEST_LINK= ptpd2-devel
|
|
|
|
PLIST_FILES= sbin/ptpd2
|
|
PORTDOCS= *
|
|
|
|
USE_RC_SUBR= ptpd2
|
|
|
|
MAN8= ptpd2.8
|
|
|
|
do-install::
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ptpd2 ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/${MAN8} ${MANPREFIX}/man/man8/${MAN8}
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
cd ${WRKDIR}/ptpd-${DISTVERSION}/doc && ${COPYTREE_SHARE} . ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|