diff options
author | bms <bms@FreeBSD.org> | 2010-01-15 03:45:30 +0800 |
---|---|---|
committer | bms <bms@FreeBSD.org> | 2010-01-15 03:45:30 +0800 |
commit | 4961010718ca6dabae55e1323824bb16467d7fcf (patch) | |
tree | 67fcfc1b96ac39ce3abbb33b1c977dfe5b0c03ab | |
parent | 64b1f8ee6bbb409a6e87d406f03ebd2e02769643 (diff) | |
download | freebsd-ports-gnome-4961010718ca6dabae55e1323824bb16467d7fcf.tar.gz freebsd-ports-gnome-4961010718ca6dabae55e1323824bb16467d7fcf.tar.zst freebsd-ports-gnome-4961010718ca6dabae55e1323824bb16467d7fcf.zip |
add i386/amd64 conditional build dep on yasm (found by QA tindy)
-rw-r--r-- | graphics/seom/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/graphics/seom/Makefile b/graphics/seom/Makefile index 6ce2ae1d41fb..b0a469fb9771 100644 --- a/graphics/seom/Makefile +++ b/graphics/seom/Makefile @@ -24,6 +24,12 @@ USE_XORG= x11 xv USE_GL= yes USE_LDCONFIG= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "i386" || ${ARCH} == "amd64" +BUILD_DEPENDS= ${LOCALBASE}/bin/yasm:${PORTSDIR}/devel/yasm +.endif + MAKE_JOBS_SAFE= defined MAKE_ENV+= DATADIR="${DATADIR}" PREFIX="${PREFIX}" @@ -46,8 +52,6 @@ do-fetch: .endif .endif # defined(BOOTSTRAP) -.include <bsd.port.pre.mk> - .if ${OSVERSION} < 700000 IGNORE= unsupported on FreeBSD versions prior to 7.0 .endif |