mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
3c088f1b9a
ports. They will be removed on or after that date if they are still broken and no fix has been submitted to GNATS.
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# New ports collection makefile for: ntp
|
|
# Date created: Di 5 Mai 1998 21:31:03 CEST
|
|
# Whom: andreas
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ntp
|
|
PORTVERSION= 4.1.80.r1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.udel.edu/pub/ntp/ntp4/ \
|
|
http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/-rc/}
|
|
#
|
|
# XXX Remove the following line when NTP develoopment resumes.
|
|
IGNORE= 4.2.0 just released, no development version available.
|
|
EXPIRATION_DATE=2004-08-20
|
|
DEPRECATED= ${IGNORE}
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= The Network Time Protocol Distribution
|
|
|
|
NO_LATEST_LINK= yes
|
|
# ntp's configure script created by autoconf 2.14.1 doesn't work
|
|
# if GNU_CONFIGURE is defined
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX}
|
|
|
|
.if defined(ENABLE_RAWDCF)
|
|
CONFIGURE_ARGS+= --enable-RAWDCF
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/ntp
|
|
${TAR} -C ${WRKSRC}/html -cf - . | \
|
|
${TAR} -C ${PREFIX}/share/doc/ntp --unlink -xf -
|
|
${FIND} ${PREFIX}/share/doc/ntp | \
|
|
${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP}
|
|
${FIND} ${PREFIX}/share/doc/ntp -type f | ${XARGS} ${CHMOD} ${SHAREMODE}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|