From 3cfaefb0d9c3f307ab7089f7c617bb305746f529 Mon Sep 17 00:00:00 2001 From: marino Date: Thu, 25 Jul 2013 15:04:42 +0000 Subject: audio/timemachine: directly link libmath and cleanup Fixes indirect linking errors on modern binutils (fix from dports) Also: remove redundant MAKE_JOBS_SAFE while we are here. Remove library version specification Approved by: bapt (mentor) --- audio/timemachine/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/audio/timemachine/Makefile b/audio/timemachine/Makefile index 3b6eb742d85f..8e1cacf0d592 100644 --- a/audio/timemachine/Makefile +++ b/audio/timemachine/Makefile @@ -12,9 +12,9 @@ COMMENT= JACK audio capture tool LICENSE= GPLv2 -LIB_DEPENDS= jack.0:${PORTSDIR}/audio/jack \ +LIB_DEPENDS= jack:${PORTSDIR}/audio/jack \ lo:${PORTSDIR}/audio/liblo \ - sndfile.1:${PORTSDIR}/audio/libsndfile + sndfile:${PORTSDIR}/audio/libsndfile OPTIONS_DEFINE= LASH @@ -22,12 +22,12 @@ USES= pathfix USE_GNOME= gtk20 USE_GMAKE= yes GNU_CONFIGURE= yes -MAKE_JOBS_SAFE= yes +LDFLAGS+= -lm .include .if ${PORT_OPTIONS:MLASH} -LIB_DEPENDS+= lash.2:${PORTSDIR}/audio/lash +LIB_DEPENDS+= lash:${PORTSDIR}/audio/lash .else CONFIGURE_ARGS+=--disable-lash .endif -- cgit