svn commit: r323646 - head/audio/timemachine
John Marino
marino at FreeBSD.org
Thu Jul 25 15:04:42 UTC 2013
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
More information about the svn-ports-head
mailing list