mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
PORTNAME= mtr
|
|
PORTVERSION= 0.95
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Traceroute and ping in a single network diagnostic tool
|
|
WWW= https://www.bitwizard.nl/mtr/ \
|
|
https://github.com/traviscross/mtr
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= autoreconf ncurses pkgconfig
|
|
|
|
GNU_CONFIGURE= yes
|
|
LDFLAGS+= -lncurses
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= traviscross
|
|
|
|
CONFLICTS_INSTALL= mtr mtr-nox11
|
|
|
|
OPTIONS_DEFINE= IPV6 JSON X11
|
|
OPTIONS_DEFAULT=JSON X11
|
|
JSON_DESC= JSON support
|
|
X11_DESC= Build X11-enabled mtr
|
|
|
|
IPV6_CONFIGURE_ENABLE= ipv6
|
|
JSON_CONFIGURE_WITH= jansson
|
|
JSON_LIB_DEPENDS= libjansson.so:devel/jansson
|
|
X11_CONFIGURE_WITH= gtk
|
|
X11_USE= GNOME=gtk20
|
|
X11_USES= gnome
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|m4_esyscmd(\[build-aux/git-version-gen \.tarball-version\])|${PORTVERSION}|' ${WRKSRC}/configure.ac
|
|
|
|
post-install:
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "${PREFIX}/sbin/mtr is setuid \"root\" "
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "Please read about potential security issues"
|
|
@${ECHO_MSG} "in file ${WRKSRC}/SECURITY (not installed)"
|
|
@${ECHO_MSG} ""
|
|
|
|
.include <bsd.port.mk>
|