From owner-svn-ports-head@FreeBSD.ORG Wed Nov 19 21:27:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 897D15BF; Wed, 19 Nov 2014 21:27:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5BDC485A; Wed, 19 Nov 2014 21:27:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAJLR5gQ021068; Wed, 19 Nov 2014 21:27:05 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAJLR556021067; Wed, 19 Nov 2014 21:27:05 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201411192127.sAJLR556021067@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 19 Nov 2014 21:27:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372823 - head/net/ntopng X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Nov 2014 21:27:05 -0000 Author: antoine Date: Wed Nov 19 21:27:04 2014 New Revision: 372823 URL: https://svnweb.freebsd.org/changeset/ports/372823 QAT: https://qat.redports.org/buildarchive/r372823/ Log: Mark BROKEN: Fails to link /usr/bin/clang++ Ntop.o ParserInterface.o Prefs.o HTTPBL.o Categorization.o EthStats.o HTTPserver.o ActivityStats.o Lua.o ProtoStats.o NetworkInterface.o PcapInterface.o GenericHost.o StringHash.o Trace.o PacketStats.o StringHost.o Utils.o SimpleStringHost.o GenericHashEntry.o DnsStats.o Flow.o Redis.o main.o PeriodicActivities.o AddressResolution.o HostContacts.o HistoricalInterface.o Mutex.o NdpiStats.o ExportInterface.o EppStats.o AlertCounter.o Host.o IpAddress.o DB.o GenericHash.o RuntimePrefs.o FlowHash.o TrafficStats.o PF_RINGInterface.o Geolocation.o NtopGlobals.o CollectorInterface.o HostHash.o -Wall -L/usr/local/lib -lndpi -lpcap -L/usr/local/lib -lluajit-5.1 -L/usr/local/lib -lrrd /usr/local/lib/libzmq.a -L/usr/local/lib -ljson-c -lsqlite3 -lGeoIP -fstack-protector -L/usr/local/lib -lrt -lm -lpthread -o ntopng /usr/local/lib/libzmq.a(libzmq_la-ipc_listener.o): In function `zmq::ipc_listener_t::set_address(char const*)': (.text+0x84e): warning: warning: tempnam() possibly used unsafely; consider using mkstemp() /usr/local/lib/libzmq.a(libzmq_la-zmq.o): In function `zmq_ctx_new': (.text+0x58): undefined reference to `pgm_init' /usr/local/lib/libzmq.a(libzmq_la-zmq.o): In function `zmq_ctx_new': (.text+0x79): undefined reference to `pgm_error_free' /usr/local/lib/libzmq.a(libzmq_la-zmq.o): In function `zmq_ctx_term': (.text+0x198): undefined reference to `pgm_shutdown' ... Reported by: pkg-fallout Modified: head/net/ntopng/Makefile Modified: head/net/ntopng/Makefile ============================================================================== --- head/net/ntopng/Makefile Wed Nov 19 21:24:11 2014 (r372822) +++ head/net/ntopng/Makefile Wed Nov 19 21:27:04 2014 (r372823) @@ -12,6 +12,8 @@ COMMENT= Network monitoring tool with co LICENSE= GPLv3 +BROKEN= Fails to link + LIB_DEPENDS= librrd.so:${PORTSDIR}/databases/rrdtool \ libluajit-5.1.so:${PORTSDIR}/lang/luajit \ libndpi.so:${PORTSDIR}/net/ndpi \