diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2005-04-11 09:47:42 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2005-04-11 09:47:42 +0000 |
commit | 2e1df579b6bd4cd275dbdb24b80534ea9a82d73c (patch) | |
tree | c39a051791b339317f3370f582209a494178ee77 /audio/flac | |
parent | f55ece472b85a63da04823bbf276ec097630bd3d (diff) |
Notes
Diffstat (limited to 'audio/flac')
-rw-r--r-- | audio/flac/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/audio/flac/Makefile b/audio/flac/Makefile index 041f2aab7cd2..87e94377c641 100644 --- a/audio/flac/Makefile +++ b/audio/flac/Makefile @@ -16,10 +16,6 @@ COMMENT= Free lossless audio codec LIB_DEPENDS= ogg.5:${PORTSDIR}/audio/libogg -.if ${ARCH} == "i386" -BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm -.endif - USE_ICONV= yes USE_REINPLACE= yes USE_LIBTOOL_VER=15 @@ -39,6 +35,12 @@ MAKE_ENV= DOC=doc INSTALLS_SHLIB= yes MAN1= flac.1 metaflac.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "i386" +BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm +.endif + # "obj" is magic to our make(1) post-configure: @${RM} -rf ${WRKSRC}/obj @@ -49,4 +51,4 @@ post-build: test: build @cd ${WRKSRC}; ${MAKE} check -.include <bsd.port.mk> +.include <bsd.port.post.mk> |