mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
31 lines
671 B
Makefile
31 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>
|