From owner-svn-ports-all@freebsd.org Thu Dec 28 23:55:16 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE219E89C1B; Thu, 28 Dec 2017 23:55:16 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 A7C0072378; Thu, 28 Dec 2017 23:55:16 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBSNtFeb087791; Thu, 28 Dec 2017 23:55:15 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBSNtFqS087790; Thu, 28 Dec 2017 23:55:15 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201712282355.vBSNtFqS087790@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Thu, 28 Dec 2017 23:55:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457487 - head/net/wireshark X-SVN-Group: ports-head X-SVN-Commit-Author: marcus X-SVN-Commit-Paths: head/net/wireshark X-SVN-Commit-Revision: 457487 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Dec 2017 23:55:17 -0000 Author: marcus Date: Thu Dec 28 23:55:15 2017 New Revision: 457487 URL: https://svnweb.freebsd.org/changeset/ports/457487 Log: Move the libspandsp dependency to RTP. This cleans up the GUI-less dependency list when RTP is not desired. PR: 224081 Submitted by: sergey@akhmatov.ru Modified: head/net/wireshark/Makefile Modified: head/net/wireshark/Makefile ============================================================================== --- head/net/wireshark/Makefile Thu Dec 28 23:46:54 2017 (r457486) +++ head/net/wireshark/Makefile Thu Dec 28 23:55:15 2017 (r457487) @@ -3,7 +3,7 @@ PORTNAME?= wireshark PORTVERSION= 2.4.3 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.wireshark.org/download/src/ \ http://ftp.uni-kl.de/pub/wireshark/src/ \ @@ -40,8 +40,7 @@ LIB_DEPENDS+= libgpg-error.so:security/libgpg-error \ libgcrypt.so:security/libgcrypt \ liblz4.so:archivers/liblz4 \ libnghttp2.so:www/libnghttp2 \ - libsnappy.so:archivers/snappy \ - libspandsp.so:comms/spandsp + libsnappy.so:archivers/snappy CFLAGS+= -funit-at-a-time LIBS+= -L${LOCALBASE}/lib @@ -92,7 +91,8 @@ KRB_BASE_USES= gssapi KRB_HEIMDAL_USES= gssapi:heimdal KRB_MIT_USES= gssapi:mit -RTP_LIB_DEPENDS= libportaudio.so:audio/portaudio +RTP_LIB_DEPENDS= libportaudio.so:audio/portaudio \ + libspandsp.so:comms/spandsp RTP_CPPFLAGS= -I${LOCALBASE}/include SNMP_LIB_DEPENDS= libsmi.so:net-mgmt/libsmi CARES_LIB_DEPENDS= libcares.so:dns/c-ares @@ -110,7 +110,7 @@ GTK2_CONFIGURE_ON= --with-gtk=2 --with-qt=no GTK3_CONFIGURE_ON= --with-gtk=3 --with-qt=no QT5_CONFIGURE_ON= --with-qt=5 --with-gtk=no LUA_CONFIGURE_WITH= lua -RTP_CONFIGURE_WITH= portaudio +RTP_CONFIGURE_WITH= portaudio spandsp SNMP_CONFIGURE_WITH= libsmi CARES_CONFIGURE_WITH= c-ares GEOIP_CONFIGURE_WITH= geoip