blob: c1f287a5bdc4cc89b123fa019e3e64e529974d8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Created by: cracauer@cons.org "Martin Cracauer"
# $FreeBSD$
PORTNAME= rdate
PORTVERSION= 1.3
CATEGORIES= sysutils
MASTER_SITES= http://www.cons.org/freebsd-distfiles/
MAINTAINER= ports@FreeBSD.org
COMMENT= Sets the clock of the local host to the time of another host
PLIST_FILES= man/man8/${PORTNAME}.8.gz sbin/rdate
post-patch:
@${REINPLACE_CMD} -e 's|gcc|${CC}|g' ${WRKSRC}/Makefile
post-install:
${INSTALL_PROGRAM} ${WRKSRC}/rdate ${STAGEDIR}${PREFIX}/sbin/
${INSTALL_MAN} ${WRKSRC}/rdate.8 ${STAGEDIR}${PREFIX}/man/man8/
.include <bsd.port.mk>
|