mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
37 lines
758 B
Makefile
37 lines
758 B
Makefile
# Created by: jamundsen
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= shmux
|
|
DISTVERSION= 1.0.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://web.taranis.org/shmux/dist/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= online@jamundsen.dyndns.org
|
|
COMMENT= Utility to run commands on multiple hosts using shell commands
|
|
|
|
OPTIONS_DEFINE= FPING PCRE
|
|
OPTIONS_DEFAULT= FPING
|
|
FPING_DESC= Use fping utility
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --datadir=${PREFIX}/share/examples
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MFPING}
|
|
RUN_DEPENDS+= fping:${PORTSDIR}/net/fping
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPCRE}
|
|
LIB_DEPENDS+= pcre.3:${PORTSDIR}/devel/pcre
|
|
CONFIGURE_ARGS+= --with-pcre=${LOCALBASE}/lib
|
|
.else
|
|
CONFIGURE_ARGS+= --with-pcre=no
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|