Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jul 2013 15:04:42 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r323646 - head/audio/timemachine
Message-ID:  <201307251504.r6PF4gfR067946@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Thu Jul 25 15:04:42 2013
New Revision: 323646
URL: http://svnweb.freebsd.org/changeset/ports/323646

Log:
  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)

Modified:
  head/audio/timemachine/Makefile

Modified: head/audio/timemachine/Makefile
==============================================================================
--- head/audio/timemachine/Makefile	Thu Jul 25 14:43:20 2013	(r323645)
+++ head/audio/timemachine/Makefile	Thu Jul 25 15:04:42 2013	(r323646)
@@ -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 <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MLASH}
-LIB_DEPENDS+=	lash.2:${PORTSDIR}/audio/lash
+LIB_DEPENDS+=	lash:${PORTSDIR}/audio/lash
 .else
 CONFIGURE_ARGS+=--disable-lash
 .endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307251504.r6PF4gfR067946>