mirror of
https://git.freebsd.org/ports.git
synced 2025-05-22 03:45:17 -04:00
This ports contains FreeBSD's "rmds" which were originally part of the base system. Reviewed by: jbeich@, matthew@ Approved by: jbeich@, matthew@ Differential Revision: https://reviews.freebsd.org/D11345
30 lines
671 B
Makefile
30 lines
671 B
Makefile
# Created by: Jeremie Le Hen <jlh@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bsdrcmds
|
|
PORTVERSION= 20170627
|
|
CATEGORIES= net
|
|
MASTER_SITES= LOCAL/jlh
|
|
|
|
MAINTAINER= jlh@FreeBSD.org
|
|
COMMENT= FreeBSD rcmds (rcp/rlogin/rlogind/rsh/rshd/ruptime/rwho/rwhod)
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= tar:xz uidfix
|
|
|
|
MAKE_ARGS+= BINOWN=${BINOWN} BINMODE=${BINMODE}
|
|
MAKE_ENV+= NO_WERROR=1
|
|
|
|
OPTIONS_DEFINE= IPV6 LIBBLACKLIST
|
|
OPTIONS_DEFAULT= LIBBLACKLIST
|
|
.if !exists(/usr/include/blacklist.h)
|
|
OPTIONS_EXCLUDE= LIBBLACKLIST
|
|
.endif
|
|
|
|
IPV6_MAKE_ARGS= USE_IPV6=yes
|
|
|
|
LIBBLACKLIST_DESC= libblacklist(3) support for rlogind(8) and rshd(8)
|
|
LIBBLACKLIST_MAKE_ARGS= USE_LIBBLACKLIST=yes
|
|
|
|
.include <bsd.port.mk>
|