diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2014-09-11 21:19:52 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2014-09-11 21:19:52 +0000 |
commit | 825c256342c1dc9b1d8869209ab008e95917af70 (patch) | |
tree | 10a81321e56ddea46987dd15e5475afa745bb556 | |
parent | Replace USE_AUTOTOOLS=libtool:env with USE_AUTOTOOLS=libtoolize:env (diff) |
Switch to USES=libtool:build
-rw-r--r-- | devel/libdsp/Makefile | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/devel/libdsp/Makefile b/devel/libdsp/Makefile index 7ded6a7f850e..7587201b1943 100644 --- a/devel/libdsp/Makefile +++ b/devel/libdsp/Makefile @@ -15,21 +15,13 @@ COMMENT= C++ class library of common digital signal processing functions WRKSRC= ${WRKDIR}/libdsp-src-${PORTVERSION}/${PORTNAME:S/dsp/DSP/}-${PORTVERSION} -USES= gmake libtool -USE_AUTOTOOLS= libtool:env MAKE_ENV= MKDIR="${MKDIR}" INLINE_VER="${INLINE_VER}" MAKEFILE= Makefile.BSD +USES= gmake libtool:build USE_LDCONFIG= yes INLINE_VER= 1.4.0 -do-configure: - @${DO_NADA} +CFLAGS_i386+= -DDSP_X86 -.include <bsd.port.pre.mk> - -.if ${ARCH} == "i386" -CFLAGS+= -DDSP_X86 -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> |