diff options
author | mharo <mharo@FreeBSD.org> | 2000-04-01 04:28:04 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2000-04-01 04:28:04 +0000 |
commit | e9ba5aab7d32b6a2e7e8575abbc54a5a4ddd788c (patch) | |
tree | 31b3228f96dee67c3d9b6e4241a6e5b7d2fc5edf /net/ntp-stable/Makefile | |
parent | 7bdd8909154a585b72ab8b56b534be77ed800e68 (diff) | |
download | FreeBSD-ports-e9ba5aab7d32b6a2e7e8575abbc54a5a4ddd788c.zip FreeBSD-ports-e9ba5aab7d32b6a2e7e8575abbc54a5a4ddd788c.tar.gz |
Update port net/ntp to 4.0.99g
PR: 17284
Submitted by: KATO Tsuguru tkato@prontomail.ne.jp
Diffstat (limited to 'net/ntp-stable/Makefile')
-rw-r--r-- | net/ntp-stable/Makefile | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/net/ntp-stable/Makefile b/net/ntp-stable/Makefile index 0ea56a0..d900519 100644 --- a/net/ntp-stable/Makefile +++ b/net/ntp-stable/Makefile @@ -1,24 +1,29 @@ # New ports collection makefile for: ntp -# Version required: 4.0.72 +# Version required: 4.0.99g # Date created: Di 5 Mai 1998 21:31:03 CEST # Whom: andreas # # $FreeBSD$ # -DISTNAME= ntp-4.0.93a +DISTNAME= ntp-4.0.99g CATEGORIES= net -MASTER_SITES= ftp://ftp.udel.edu/pub/ntp/testing/ +MASTER_SITES= ftp://ftp.udel.edu/pub/ntp/ntp4/ MAINTAINER= ports@FreeBSD.org # ntp's configure script created by autoconf 2.14.1 doesn't work -# our autoconf version 2.13 produces better results -USE_AUTOCONF= yes -GNU_CONFIGURE= yes +# if GNU_CONFIGURE is defined +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} post-install: - ${MKDIR} ${PREFIX}/share/doc/ntp - ${CP} -r ${WRKSRC}/html/* ${PREFIX}/share/doc/ntp +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/ntp + ${TAR} -C ${WRKSRC}/html --exclude '.*' -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> |