1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00
freebsd-ports/net/shmux/Makefile
Kai Knoblich b336292c16 net/shmux: Update to 1.0.3
While I'm here:

* Switch to GitHub and update the WWW field to avoid redirects.
* Modernize the option knobs.
* Update the license that has changed with the new release.
* Add "localbase" to USES to fix a bug that has been there a long time if
  the PCRE option was enabled. Before that the configure script was able to
  find libpcre but used bogus paths for the -I and -L compiler flags which
  produced a binary that was never linked against libpcre.

PR:		238618
Submitted by:	Thomas Merkel <tm@NetBSD.org>
Approved by:	portmgr (blanket, unmaintained port)
2019-06-18 19:16:41 +00:00

35 lines
694 B
Makefile

# Created by: jamundsen
# $FreeBSD$
PORTNAME= shmux
DISTVERSIONPREFIX= v
DISTVERSION= 1.0.3
CATEGORIES= net
MAINTAINER= ports@FreeBSD.org
COMMENT= Utility to run commands on multiple hosts using shell commands
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= localbase ncurses
USE_GITHUB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --datadir=${PREFIX}/share/examples
ALL_TARGET= ${PORTNAME}
OPTIONS_DEFINE= FPING PCRE
OPTIONS_DEFAULT= FPING
FPING_DESC= Use fping utility
FPING_RUN_DEPENDS= fping:net/fping
PCRE_LIB_DEPENDS= libpcre.so:devel/pcre
PCRE_CONFIGURE_WITH= pcre=${LOCALBASE}/lib
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>