diff options
author | bapt <bapt@FreeBSD.org> | 2013-12-11 22:38:29 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-12-11 22:38:29 +0800 |
commit | 5cdabb4f61e6eb4d4cd9d1fff46773736008756a (patch) | |
tree | 9d1491c97af6f7e587cf5112f9abd6d9038dab4c | |
parent | f9dcf01b009f275ea77e1b48467b445504d97daa (diff) | |
download | freebsd-ports-gnome-5cdabb4f61e6eb4d4cd9d1fff46773736008756a.tar.gz freebsd-ports-gnome-5cdabb4f61e6eb4d4cd9d1fff46773736008756a.tar.zst freebsd-ports-gnome-5cdabb4f61e6eb4d4cd9d1fff46773736008756a.zip |
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in benchmarks
-rw-r--r-- | benchmarks/dbench/Makefile | 2 | ||||
-rw-r--r-- | benchmarks/flowgrind/Makefile | 6 | ||||
-rw-r--r-- | benchmarks/nosqlbench/Makefile | 2 | ||||
-rw-r--r-- | benchmarks/sipp/Makefile | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/benchmarks/dbench/Makefile b/benchmarks/dbench/Makefile index fc5a8d2ca992..f1b06562e629 100644 --- a/benchmarks/dbench/Makefile +++ b/benchmarks/dbench/Makefile @@ -11,7 +11,7 @@ MASTER_SITE_SUBDIR= ../../ftp/tridge/dbench 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 diff --git a/benchmarks/flowgrind/Makefile b/benchmarks/flowgrind/Makefile index 19404ff92e43..f88974b7c283 100644 --- a/benchmarks/flowgrind/Makefile +++ b/benchmarks/flowgrind/Makefile @@ -10,9 +10,9 @@ MASTER_SITES= https://launchpad.net/flowgrind/trunk/${PORTNAME}-0.6.1/+download/ 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 diff --git a/benchmarks/nosqlbench/Makefile b/benchmarks/nosqlbench/Makefile index 04be560ceb84..11bf25aa79e6 100644 --- a/benchmarks/nosqlbench/Makefile +++ b/benchmarks/nosqlbench/Makefile @@ -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 diff --git a/benchmarks/sipp/Makefile b/benchmarks/sipp/Makefile index bc8dee09d60e..3190a68afeaf 100644 --- a/benchmarks/sipp/Makefile +++ b/benchmarks/sipp/Makefile @@ -32,7 +32,7 @@ NO_STAGE= yes .include <bsd.port.options.mk> .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 \ |