From owner-svn-ports-all@FreeBSD.ORG Wed Dec 11 14:38:30 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E412451D; Wed, 11 Dec 2013 14:38:30 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B63DC1122; Wed, 11 Dec 2013 14:38:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBEcUnu006447; Wed, 11 Dec 2013 14:38:30 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBBEcTsv006443; Wed, 11 Dec 2013 14:38:29 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201312111438.rBBEcTsv006443@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 11 Dec 2013 14:38:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336168 - in head/benchmarks: dbench flowgrind nosqlbench sipp X-SVN-Group: ports-head 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.17 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: Wed, 11 Dec 2013 14:38:31 -0000 Author: bapt Date: Wed Dec 11 14:38:29 2013 New Revision: 336168 URL: http://svnweb.freebsd.org/changeset/ports/336168 Log: In preparation for making libtool generate libraries with a sane name, fix all LIB_DEPENDS in benchmarks Modified: head/benchmarks/dbench/Makefile head/benchmarks/flowgrind/Makefile head/benchmarks/nosqlbench/Makefile head/benchmarks/sipp/Makefile Modified: head/benchmarks/dbench/Makefile ============================================================================== --- head/benchmarks/dbench/Makefile Wed Dec 11 14:37:44 2013 (r336167) +++ head/benchmarks/dbench/Makefile Wed Dec 11 14:38:29 2013 (r336168) @@ -11,7 +11,7 @@ MASTER_SITE_SUBDIR= ../../ftp/tridge/dbe MAINTAINER= jlaffaye@FreeBSD.org COMMENT= A simulation of the Ziff-Davis netbench benchmark -LIB_DEPENDS= popt:${PORTSDIR}/devel/popt +LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt LICENSE= GPLv3 Modified: head/benchmarks/flowgrind/Makefile ============================================================================== --- head/benchmarks/flowgrind/Makefile Wed Dec 11 14:37:44 2013 (r336167) +++ head/benchmarks/flowgrind/Makefile Wed Dec 11 14:38:29 2013 (r336168) @@ -10,9 +10,9 @@ MASTER_SITES= https://launchpad.net/flow MAINTAINER= lars@eggert.org COMMENT= Measure throughput and other metrics for TCP -LIB_DEPENDS= xmlrpc++:${PORTSDIR}/net/xmlrpc-c \ - gsl:${PORTSDIR}/math/gsl \ - pcap.1:${PORTSDIR}/net/libpcap +LIB_DEPENDS= libxmlrpc++.so:${PORTSDIR}/net/xmlrpc-c \ + libgsl.so:${PORTSDIR}/math/gsl \ + libpcap.so:${PORTSDIR}/net/libpcap USE_BZIP2= yes GNU_CONFIGURE= yes Modified: head/benchmarks/nosqlbench/Makefile ============================================================================== --- head/benchmarks/nosqlbench/Makefile Wed Dec 11 14:37:44 2013 (r336167) +++ head/benchmarks/nosqlbench/Makefile Wed Dec 11 14:38:29 2013 (r336168) @@ -9,7 +9,7 @@ MASTER_SITES= LOCAL/vg MAINTAINER= vg@FreeBSD.org COMMENT= Micro-benchmarking NoSQL storage -LIB_DEPENDS= tarantool:${PORTSDIR}/databases/tarantool +LIB_DEPENDS= libtarantool.so:${PORTSDIR}/databases/tarantool DATE= 20120802 USE_BZIP2= yes Modified: head/benchmarks/sipp/Makefile ============================================================================== --- head/benchmarks/sipp/Makefile Wed Dec 11 14:37:44 2013 (r336167) +++ head/benchmarks/sipp/Makefile Wed Dec 11 14:38:29 2013 (r336168) @@ -32,7 +32,7 @@ NO_STAGE= yes .include .if ${PORT_OPTIONS:MGSL} -LIB_DEPENDS+= gsl:${PORTSDIR}/math/gsl +LIB_DEPENDS+= libgsl.so:${PORTSDIR}/math/gsl MAKE_ENV+= EXTRACPPFLAGS=-DHAVE_GSL \ EXTRACFLAGS=-DHAVE_GSL \