1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/net-mgmt/mbrowse/Makefile
Tilman Keskinoz 8f32bf9d0a Unbreak after recent net-snmp update.
Comment out the failing configure check.
No response from maintainer since April 14
2004-05-06 19:54:14 +00:00

37 lines
824 B
Makefile

# New ports collection makefile for: mbrowse
# Date created: Apr 4, 2002
# Whom: Mark Pulford <mark@kyne.com.au>
#
# $FreeBSD$
#
PORTNAME= mbrowse
PORTVERSION= 0.3.1
PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= http://www.kill-9.org/mbrowse/
MAINTAINER= markp@FreeBSD.org
COMMENT= An SNMP MIB Browser for X
.if defined(WITH_NET_SNMP4)
LIB_DEPENDS= snmp.4:${PORTSDIR}/net-mgmt/net-snmp4
.else
LIB_DEPENDS= netsnmp.6:${PORTSDIR}/net-mgmt/net-snmp
.endif
GNU_CONFIGURE= yes
PLIST_FILES= bin/mbrowse
USE_GNOME= gtk12 gnometarget
CONFIGURE_ARGS+= --with-snmp-prefix=${PREFIX}
.if defined(WITH_NET_SNMP4)
CONFIGURE_ARGS+= --with-snmp-type=ucd
.else
CONFIGURE_ENV+= LDFLAGS="`net-snmp-config --libs`" \
CPPFLAGS="`net-snmp-config --cflags`"
CONFIGURE_ARGS+= --with-snmp-type=net
.endif
.include <bsd.port.mk>