Date: Sat, 8 Sep 2012 06:53:18 +0000 (UTC) From: Mark Linimon <linimon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r303870 - in head: cad/leocad databases/ruby-bdb1 devel/csmith games/freedroidrpg lang/phantomjs multimedia/emotion security/razorback-api sysutils/syslog-ng-devel www/luakit x11-toolki... Message-ID: <201209080653.q886rIV0039036@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: linimon Date: Sat Sep 8 06:53:18 2012 New Revision: 303870 URL: http://svn.freebsd.org/changeset/ports/303870 Log: Mark as broken on sparc64. Hat: portmgr Modified: head/cad/leocad/Makefile head/databases/ruby-bdb1/Makefile head/devel/csmith/Makefile head/games/freedroidrpg/Makefile head/lang/phantomjs/Makefile head/multimedia/emotion/Makefile head/security/razorback-api/Makefile head/sysutils/syslog-ng-devel/Makefile head/www/luakit/Makefile head/x11-toolkits/elementary/Makefile head/x11-wm/enlightenment/Makefile Modified: head/cad/leocad/Makefile ============================================================================== --- head/cad/leocad/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/cad/leocad/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -57,4 +57,10 @@ post-install: ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKDIR}/pieces/* ${DATADIR} -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= Does not compile on sparc64 +.endif + +.include <bsd.port.post.mk> Modified: head/databases/ruby-bdb1/Makefile ============================================================================== --- head/databases/ruby-bdb1/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/databases/ruby-bdb1/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -50,6 +50,7 @@ post-install: .endif .include <bsd.port.pre.mk> + .if ${RUBY_VER} == 1.9 pre-everything:: ######################################################## @@ -61,4 +62,9 @@ pre-everything:: .elif ${RUBY_VER} == 1.8 post-build: test .endif + +.if ${ARCH} == "sparc64" +BROKEN= Does not install on sparc64 (signal 6) +.endif + .include <bsd.port.post.mk> Modified: head/devel/csmith/Makefile ============================================================================== --- head/devel/csmith/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/devel/csmith/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -24,4 +24,10 @@ LDFLAGS+= -L${LOCALBASE}/lib MAKE_JOBS_SAFE= yes -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= Does not compile on sparc64 (includes i386 asm) +.endif + +.include <bsd.port.post.mk> Modified: head/games/freedroidrpg/Makefile ============================================================================== --- head/games/freedroidrpg/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/games/freedroidrpg/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -52,4 +52,8 @@ CONFIGURE_ARGS+=--enable-vorbis CONFIGURE_ARGS+=--disable-vorbis .endif +.if ${ARCH} == "sparc64" +BROKEN= Does not configure on sparc64 +.endif + .include <bsd.port.mk> Modified: head/lang/phantomjs/Makefile ============================================================================== --- head/lang/phantomjs/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/lang/phantomjs/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -38,4 +38,10 @@ do-install: cd ${WRKSRC} && ${INSTALL_LIB} src/qt/lib/libQtNetwork.so.4 ${PREFIX}/lib/phantomjs/ cd ${WRKSRC} && ${INSTALL_LIB} src/qt/lib/libQtCore.so.4 ${PREFIX}/lib/phantomjs/ -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= Does not link on sparc64 +.endif + +.include <bsd.port.post.mk> Modified: head/multimedia/emotion/Makefile ============================================================================== --- head/multimedia/emotion/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/multimedia/emotion/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -36,6 +36,10 @@ CONFIGURE_ARGS= --disable-generic-vlc .include <bsd.port.pre.mk> +.if ${ARCH} == "sparc64" +BROKEN= Does not install on sparc64: coredump +.endif + .if defined(WITHOUT_XINE) && defined(WITHOUT_GST) IGNORE= is useless without playback library. Please run 'make config' and choose one of XINE and GST .endif Modified: head/security/razorback-api/Makefile ============================================================================== --- head/security/razorback-api/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/security/razorback-api/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -57,6 +57,12 @@ CONFIGURE_ARGS+=--enable-stomp-debug BROKEN= does not build when compiled with clang .endif +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= Does not compile on sparc64 +.endif + post-install: @if [ ! -f ${PREFIX}/etc/razorback/api.conf ]; then \ ${CP} -p ${PREFIX}/etc/razorback/api.conf.sample ${PREFIX}/etc/razorback/api.conf ; \ @@ -65,4 +71,4 @@ post-install: ${CP} -p ${PREFIX}/etc/razorback/magic.sample ${PREFIX}/etc/razorback/magic ; \ fi -.include <bsd.port.mk> +.include <bsd.port.post.mk> Modified: head/sysutils/syslog-ng-devel/Makefile ============================================================================== --- head/sysutils/syslog-ng-devel/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/sysutils/syslog-ng-devel/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -70,6 +70,10 @@ WITH_OPENSSL_PORT= yes .include <bsd.port.pre.mk> +.if ${ARCH} == "sparc64" +BROKEN= Does not compile on sparc64: gcc core dump +.endif + .if defined(WITH_TCP_WRAPPERS) CONFIGURE_ARGS+= --enable-tcp-wrapper .else Modified: head/www/luakit/Makefile ============================================================================== --- head/www/luakit/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/www/luakit/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -36,6 +36,10 @@ OPTIONS= LUAJIT "Use the Just-In-Time co .include <bsd.port.options.mk> +.if ${ARCH} == "sparc64" +BROKEN= Does not install on sparc64 +.endif + .if defined(WITH_LUAJIT) LIB_DEPENDS+= luajit:${PORTSDIR}/lang/luajit CONFIGURE_ARGS+=USE_LUAJIT=1 Modified: head/x11-toolkits/elementary/Makefile ============================================================================== --- head/x11-toolkits/elementary/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/x11-toolkits/elementary/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -46,4 +46,10 @@ post-patch: post-install: @${RMDIR} ${PREFIX}/share/elementary/examples -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= Does not install on sparc64: signal 10 +.endif + +.include <bsd.port.post.mk> Modified: head/x11-wm/enlightenment/Makefile ============================================================================== --- head/x11-wm/enlightenment/Makefile Sat Sep 8 06:50:14 2012 (r303869) +++ head/x11-wm/enlightenment/Makefile Sat Sep 8 06:53:18 2012 (r303870) @@ -59,4 +59,10 @@ post-install: @${ECHO_MSG} 'set suid bit if do not trust all users of this machine.' @${ECHO_MSG} '********************************************************' -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= Does not install on sparc64: signal 10 +.endif + +.include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209080653.q886rIV0039036>