mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
dbc8aa6cc1
something already there (PORTOBJFORMAT, OSVERSION) or move stuff from after .include <bsd.port.mk> to before. (This is not by any means the complete list but just the ones I've noticed recently.)
37 lines
887 B
Makefile
37 lines
887 B
Makefile
# New ports collection makefile for: rdist
|
|
# Version required: rdist-6.1.4
|
|
# Date created: 19 August 1995
|
|
# Whom: peter
|
|
#
|
|
# $Id: Makefile,v 1.15 1998/10/14 00:10:17 jseger Exp $
|
|
#
|
|
|
|
DISTNAME= rdist-6.1.4
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.magnicomp.com/download/rdist/ \
|
|
ftp://ftp.rge.com/pub/admin/rdist/ \
|
|
ftp://ftp.sunet.se/pub/unix/admin/mirror-magnicomp/download/rdist/
|
|
|
|
MAINTAINER= peter@FreeBSD.org
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 300000
|
|
BROKEN= MOUNT_NFS undeclared
|
|
.endif
|
|
|
|
# To avoid confusion with /usr/bin/rdist, you may prefer otherwise.
|
|
RDIST_NAME?= rdist6
|
|
|
|
INSTALL_TARGET= install install.man
|
|
MAKE_ENV= BUILD_OPT="${CFLAGS}" BUILD_CLIENT=${RDIST_NAME}
|
|
MAN1= ${RDIST_NAME}.1
|
|
MAN8= rdistd.8
|
|
PLIST_SUB= RDIST_NAME=${RDIST_NAME}
|
|
|
|
post-install:
|
|
@strip ${PREFIX}/bin/${RDIST_NAME}
|
|
@strip ${PREFIX}/bin/rdistd
|
|
|
|
.include <bsd.port.post.mk>
|