aboutsummaryrefslogtreecommitdiffstats
path: root/net/shmux/Makefile
blob: 7d622d1e76e2b01c8d8294954dd4b65873962c20 (plain) (blame)
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
37
38
39
40
41
42
# Created by: jamundsen
# $FreeBSD$

PORTNAME=   shmux
DISTVERSION=    1.0.2
PORTREVISION=   3
CATEGORIES= net
MASTER_SITES=   http://web.taranis.org/shmux/dist/

MAINTAINER= ports@FreeBSD.org
COMMENT=    Utility to run commands on multiple hosts using shell commands

LICENSE=    BSD4CLAUSE
LICENSE_FILE=   ${WRKSRC}/LICENSE

USES=       ncurses tar:tgz
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --datadir=${PREFIX}/share/examples

ALL_TARGET= ${PORTNAME}

OPTIONS_DEFINE=     FPING PCRE
OPTIONS_DEFAULT=    FPING
FPING_DESC= Use fping utility

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MFPING}
RUN_DEPENDS+=   fping:net/fping
.endif

.if ${PORT_OPTIONS:MPCRE}
LIB_DEPENDS+=   libpcre.so:devel/pcre
CONFIGURE_ARGS+=    --with-pcre=${LOCALBASE}/lib
.else
CONFIGURE_ARGS+=    --with-pcre=no
.endif

post-install:
    ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}

.include <bsd.port.mk>