blob: ec10556e5bcc1fd6327785e7d256470730baf595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# 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= ports@FreeBSD.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+= libpcre.so:${PORTSDIR}/devel/pcre
CONFIGURE_ARGS+= --with-pcre=${LOCALBASE}/lib
.else
CONFIGURE_ARGS+= --with-pcre=no
.endif
.include <bsd.port.mk>
|