diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2007-09-23 10:57:35 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2007-09-23 10:57:35 +0000 |
commit | 82a527cf94e6ebf523e93f06242ba82f53d3eec9 (patch) | |
tree | b42956e50228d974486a53bfadd31a358ceaabcb /audio/soundtouch/Makefile | |
parent | - Make port more OPTIONS compliant (more OPTIONS workarounds) (diff) |
[PATCH] audio/soundtouch: fix build.
Attached patch seems to fix the build.
PR: ports/115768
Submitted by: trasz <trasz@pin.if.uz.zgora.pl>
Approved by: maintainer timeout
Diffstat (limited to 'audio/soundtouch/Makefile')
-rw-r--r-- | audio/soundtouch/Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/audio/soundtouch/Makefile b/audio/soundtouch/Makefile index e463c0501e6f..3e1a784a9e80 100644 --- a/audio/soundtouch/Makefile +++ b/audio/soundtouch/Makefile @@ -18,12 +18,8 @@ CONFIGURE_ARGS= --enable-shared=yes USE_AUTOTOOLS= autoconf:259 automake:19:env libtool:15 USE_LDCONFIG= yes -BROKEN= Does not compile - -post-patch: .SILENT -.for f in config.guess config.sub depcomp install-sh missing - ${LN} -sf ${LOCALBASE}/share/automake-1.9/${f} ${WRKSRC}/config/${f} -.endfor +pre-configure: + cd ${WRKSRC} && ${TOUCH} NEWS README AUTHORS ChangeLog && ${AUTORECONF} -i ${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g; \ s|-O3[^I]*|${CXXFLAGS} -|; s|$$(prefix)/doc|$$(datadir)/doc|; \ @@ -38,7 +34,4 @@ post-patch: .SILENT ${WRKSRC}/Makefile.in .endif -post-configure: - @${REINPLACE_CMD} -e '/objformat=/s|=.*|=elf|' ${WRKSRC}/configure - .include <bsd.port.mk> |