diff options
author | danfe <danfe@FreeBSD.org> | 2011-12-17 01:10:57 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2011-12-17 01:10:57 +0800 |
commit | 8fb28ed8605f0d7c926b46ace2737216872849e5 (patch) | |
tree | 5f45f1a4ae34d708dfbd0e75bd7ef270cd00ec7f /x11-themes/polymer | |
parent | ddf38c08ceaa44e470bce4e0fcfb99bf11f0f131 (diff) | |
download | freebsd-ports-gnome-8fb28ed8605f0d7c926b46ace2737216872849e5.tar.gz freebsd-ports-gnome-8fb28ed8605f0d7c926b46ace2737216872849e5.tar.zst freebsd-ports-gnome-8fb28ed8605f0d7c926b46ace2737216872849e5.zip |
- Switch to GNU make as parallel builds (-jX) are broken with BSD make(1)
- Unbreak on amd64 by disabling MMX and SSE2 optimizations in this case
Diffstat (limited to 'x11-themes/polymer')
-rw-r--r-- | x11-themes/polymer/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/x11-themes/polymer/Makefile b/x11-themes/polymer/Makefile index 1a583c64626b..1708f658f99d 100644 --- a/x11-themes/polymer/Makefile +++ b/x11-themes/polymer/Makefile @@ -20,6 +20,7 @@ BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake USE_BZIP2= yes USE_AUTOTOOLS= autoheader +USE_GMAKE= yes # parallel builds (-jX) are broken with BSD make(1) USE_QT_VER= 3 USE_LDCONFIG= yes @@ -33,16 +34,14 @@ QTSTYLESDIR= ${PREFIX}/lib/plugins/styles .include <bsd.port.pre.mk> -.if ${ARCH} == amd64 -BROKEN= Does not compile on amd64 -.endif - +.if ${ARCH} != amd64 .if ${MACHINE_CPU:Mmmx} CONFIGURE_ARGS+= --enable-mmx .endif .if ${MACHINE_CPU:Msse2} CONFIGURE_ARGS+= --enable-sse2 .endif +.endif do-install: @${MKDIR} ${QTSTYLESDIR} |