Date: Tue, 31 Jan 2017 03:40:46 +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: r432897 - in head: astro/opencpn audio/mixxx audio/musicpd benchmarks/fio biology/bwa cad/kicad-devel chinese/pyzy comms/linrad devel/avr-gcc devel/avr-gcc-devel devel/gcc-msp430-ti-too... Message-ID: <201701310340.v0V3ekQu029320@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: linimon Date: Tue Jan 31 03:40:46 2017 New Revision: 432897 URL: https://svnweb.freebsd.org/changeset/ports/432897 Log: Mark various ports broken on aarch64 and armv6. Approved by: portmgr (tier-2 blanket) Modified: head/astro/opencpn/Makefile head/audio/mixxx/Makefile head/audio/musicpd/Makefile head/benchmarks/fio/Makefile head/biology/bwa/Makefile head/cad/kicad-devel/Makefile head/chinese/pyzy/Makefile head/comms/linrad/Makefile head/devel/avr-gcc-devel/Makefile head/devel/avr-gcc/Makefile head/devel/gcc-msp430-ti-toolchain/Makefile head/devel/isa-l/Makefile head/devel/liblas/Makefile head/devel/pinba_engine/Makefile head/emulators/hatari/Makefile head/emulators/unicorn/Makefile head/games/0ad/Makefile head/games/blobby/Makefile head/games/diaspora/Makefile head/games/openspades/Makefile head/games/vegastrike/Makefile head/graphics/agave/Makefile head/graphics/code-eli/Makefile head/graphics/s10sh/Makefile head/lang/sdcc-devel/Makefile head/lang/sdcc/Makefile head/math/amath/Makefile head/math/asir2000/Makefile head/math/stp/Makefile head/multimedia/aegisub/Makefile head/multimedia/handbrake/Makefile head/net-im/ring-daemon/Makefile head/net/chrony/Makefile head/security/botan110/Makefile head/textproc/kenlm/Makefile head/textproc/randlm/Makefile head/www/ufdbguard/Makefile Modified: head/astro/opencpn/Makefile ============================================================================== --- head/astro/opencpn/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/astro/opencpn/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -32,6 +32,8 @@ CMAKE_ARGS= -DBUNDLE_DOCS=ON -DBUNDLE_GS LDFLAGS+= -Wl,-E # plugins LDFLAGS+= -Wl,--as-needed # ICE, SM, Xext +BROKEN_aarch64= Fails to compile: use of undeclared identifier rand + post-patch: @${REINPLACE_CMD} -e 's,/usr/local,${PREFIX},' \ ${WRKSRC}/src/mygdal/cpl_csv.cpp \ Modified: head/audio/mixxx/Makefile ============================================================================== --- head/audio/mixxx/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/audio/mixxx/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -25,6 +25,8 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +BROKEN_aarch64= Fails to compile: Exception("invalid machine type") + USES= scons iconv USE_QT4= corelib gui network opengl script sql svg xml \ linguisttools_build moc_build qmake_build rcc_build uic_build Modified: head/audio/musicpd/Makefile ============================================================================== --- head/audio/musicpd/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/audio/musicpd/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -27,6 +27,7 @@ LDFLAGS+= -L${LOCALBASE}/lib -L${LOCALBA #Workaround (transient?) link error with libwrap CONFIGURE_ARGS+=--disable-libwrap +BROKEN_armv6= Fails to compile: undefined reference to request_init BROKEN_powerpc64= Does not build on powerpc64 PORTDOCS= AUTHORS README.md COPYING NEWS Modified: head/benchmarks/fio/Makefile ============================================================================== --- head/benchmarks/fio/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/benchmarks/fio/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -18,6 +18,8 @@ GNUPLOT_DESC= Support for plotting graph GNUPLOT_BUILD_DEPENDS= ${LOCALBASE}/bin/gnuplot:math/gnuplot +BROKEN_aarch64= Fails to compile: error: sys/auxv.h file not found +BROKEN_armv6= Fails to compile: error: use of undeclared identifier nop BROKEN_powerpc64= Does not build on powerpc64 do-install: Modified: head/biology/bwa/Makefile ============================================================================== --- head/biology/bwa/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/biology/bwa/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -11,6 +11,8 @@ COMMENT= Burrows-Wheeler sequence aligne LICENSE= GPLv3 +BROKEN_aarch64= fails to compile: error: invalid conversion between vector type and integer type + USES= perl5 shebangfix tar:bzip2 SHEBANG_FILES= qualfa2fq.pl xa2multi.pl USE_PERL5= run Modified: head/cad/kicad-devel/Makefile ============================================================================== --- head/cad/kicad-devel/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/cad/kicad-devel/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -16,7 +16,6 @@ COMMENT= Schematic and PCB editing soft LICENSE= GPLv3 BUILD_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:math/glm - LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libcurl.so:ftp/curl @@ -33,6 +32,8 @@ WX_COMPS= wx WX_UNICODE= yes USE_GNOME= atk cairo # Required by libwx_gtk2_aui-2.8.so +BROKEN_aarch64= Fails to compile: use of undeclared identifier builtin_ia32_emms + OPTIONS_DEFINE= DOCS PLIST_SUB= OPSYS=${OPSYS} \ Modified: head/chinese/pyzy/Makefile ============================================================================== --- head/chinese/pyzy/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/chinese/pyzy/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -21,6 +21,9 @@ SHEBANG_FILES= data/db/android/create_db USE_GNOME= glib20 USE_LDCONFIG= yes +BROKEN_aarch64= Fails to compile: error: constant expression evaluates to -1 +BROKEN_armv6= Fails to compile: error: constant expression evaluates to -1 + GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-dependency-tracking --disable-boost Modified: head/comms/linrad/Makefile ============================================================================== --- head/comms/linrad/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/comms/linrad/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -32,6 +32,8 @@ LINRAD_DOCFILES= z_APM.txt z_BUFFERS.txt z_PARALLEL_PORT.txt z_SETTINGS.txt \ z_USERS_EXTRA.txt z_USERS_HWARE.txt +BROKEN_aarch64= Fails to compile: implicit declaration of function outb +BROKEN_armv6= Fails to configure: can not find /nxb-bin/usr/bin/cc BROKEN_sparc64= Fails to compile: implicit declaration of function outb .include <bsd.port.pre.mk> Modified: head/devel/avr-gcc-devel/Makefile ============================================================================== --- head/devel/avr-gcc-devel/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/devel/avr-gcc-devel/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -36,6 +36,9 @@ USE_PERL5= build CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes +BROKEN_aarch64= Fails to package: cannot find manpages +BROKEN_mips64= Fails to configure: cannot compute suffix of object files + .include <bsd.port.pre.mk> .if (${ARCH} == "amd64") Modified: head/devel/avr-gcc/Makefile ============================================================================== --- head/devel/avr-gcc/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/devel/avr-gcc/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -47,6 +47,9 @@ OPTIONS_SUB= yes NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls +BROKEN_aarch64= Fails to package: cannot find manpages +BROKEN_mips64= Fails to configure: cannot compute suffix of object files + .include <bsd.port.pre.mk> .if (${ARCH} == "amd64") Modified: head/devel/gcc-msp430-ti-toolchain/Makefile ============================================================================== --- head/devel/gcc-msp430-ti-toolchain/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/devel/gcc-msp430-ti-toolchain/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -24,6 +24,7 @@ EXTRACT_ONLY= gcc-${GCC_VERSION}.tar.bz2 newlib-${NEWLIB_VERSION}.tar.gz \ msp430-gcc-${PATCHSET_VERSION}_source-patches.tar.bz2 \ msp430-gcc-support-files-${SUPPORT_VERSION}.zip + MAINTAINER= lev@FreeBSD.org COMMENT= Complete gcc-based toolcahin for TI MSP430 uC @@ -35,6 +36,8 @@ LIB_DEPENDS= libgmp.so:math/gmp \ libmpc.so:math/mpc \ libisl.so:devel/isl +BROKEN_aarch64= fails to compile: c++: error: unsupported option -print-multi-os-directory + USES= bison compiler cpe gmake iconv libtool makeinfo ncurses \ tar:bzip2 USE_CSTD= gnu89 Modified: head/devel/isa-l/Makefile ============================================================================== --- head/devel/isa-l/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/devel/isa-l/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -23,4 +23,6 @@ USE_LDCONFIG= yes INSTALL_TARGET= install-strip +BROKEN_aarch64= Fails to compile: invalid conversion between vector type and integer type + .include <bsd.port.mk> Modified: head/devel/liblas/Makefile ============================================================================== --- head/devel/liblas/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/devel/liblas/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -26,4 +26,7 @@ USE_GITHUB= yes GH_ACCOUNT= libLAS GH_PROJECT= ${GH_ACCOUNT} +BROKEN_aarch64= Fails to compile: file liblas/detail/endian.hpp needs to be set up for your CPU type +BROKEN_armv6= Fails to compile: file liblas/detail/endian.hpp needs to be set up for your CPU type + .include <bsd.port.mk> Modified: head/devel/pinba_engine/Makefile ============================================================================== --- head/devel/pinba_engine/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/devel/pinba_engine/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -42,6 +42,8 @@ CFLAGS+= -I${LOCALBASE}/include/mysql SUB_FILES= pkg-message PORTDOCS= NEWS TODO README +BROKEN_aarch64= Fails to configure: failed to find required header file include/mysql_version.h + post-install: @${MKDIR} ${STAGEDIR}${DATADIR} @${INSTALL} ${WRKSRC}/default_tables.sql ${STAGEDIR}${DATADIR} Modified: head/emulators/hatari/Makefile ============================================================================== --- head/emulators/hatari/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/emulators/hatari/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -27,6 +27,9 @@ CMAKE_ARGS= -DETCDIR:PATH="${PREFIX}/etc -DREADLINE_FOUND:BOOL=ON INSTALLS_ICONS= yes +BROKEN_aarch64= Fails to configure: error: unrecognized CPU type +BROKEN_armv6= Fails to configure: CMake Error: Generator: execution of make failed + OPTIONS_DEFINE= DEBUG DOCS SDL2 WINUAE DEBUG_CFLAGS_OFF= -DNDEBUG Modified: head/emulators/unicorn/Makefile ============================================================================== --- head/emulators/unicorn/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/emulators/unicorn/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -24,4 +24,6 @@ MAKE_ENV= INSTALL_LIB="${INSTALL_LIB}" \ TEST_TARGET= test TEST_WRKSRC= ${WRKSRC}/tests/unit +BROKEN_aarch64= fails to compile: error: use of undeclared identifier tcg_op_defs + .include <bsd.port.mk> Modified: head/games/0ad/Makefile ============================================================================== --- head/games/0ad/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/games/0ad/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -41,6 +41,9 @@ USE_WX= 2.8+ WX_COMPS= wx:lib MAKE_ENV+= JOBS=${_MAKE_JOBS} +BROKEN_aarch64= Fails to compile: no member named verifyHeapAccessDisassembly +BROKEN_armv6= Fails to link: fatal error: conftest: Unknown error: -1 + PORTDATA= * .include <bsd.port.pre.mk> Modified: head/games/blobby/Makefile ============================================================================== --- head/games/blobby/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/games/blobby/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -29,6 +29,8 @@ WRKSRC= ${WRKDIR}/blobby-1.0rc3 PORTDOCS= AUTHORS ChangeLog INSTALL NEWS README TODO +BROKEN_aarch64= Fails to compile: I can't tell what endian-ness to use for your architecture + post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} Modified: head/games/diaspora/Makefile ============================================================================== --- head/games/diaspora/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/games/diaspora/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -66,6 +66,8 @@ WXLAUNCHER_VARS= PORTDATA+="resources *. POST_PLIST+= build-plist-empty +BROKEN_aarch64= Fails to compile: cast from pointer to smaller type loses information + post-extract: .SILENT .for v in 1.1 1.1.1 (cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \ Modified: head/games/openspades/Makefile ============================================================================== --- head/games/openspades/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/games/openspades/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -35,6 +35,8 @@ PORTDATA= * OPTIONS_DEFINE= DOCS +BROKEN_aarch64= Fails to compile: unknown register name %xmm0 in asm + post-extract: @${MKDIR} ${WRKSRC}/Resources/DevPak @${MV} ${WRKDIR}/*.pak ${WRKSRC}/Resources/DevPak/ Modified: head/games/vegastrike/Makefile ============================================================================== --- head/games/vegastrike/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/games/vegastrike/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -48,6 +48,8 @@ MESHER_PLIST_FILES= bin/mesher MESHER_LIB_DEPENDS= libOgreMain.so:graphics/ogre3d MESHER_CONFIGURE_ENABLE= ogre +BROKEN_aarch64= Fails to compile: POSH cannot determine target CPU + post-patch: @${REINPLACE_CMD} -E 's,/usr/(local|X11R6),${LOCALBASE},' \ ${WRKSRC}/configure Modified: head/graphics/agave/Makefile ============================================================================== --- head/graphics/agave/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/graphics/agave/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -34,6 +34,8 @@ OPTIONS_DEFINE= GNOME GNOME_USE= gnome=libgnomeui GNOME_CONFIGURE_ENABLE= gnome +BROKEN_aarch64= Fails to compile: variable has incomplete type union compat_IEEEl2bits + post-patch: @${REINPLACE_CMD} -e \ 's| _GCS_| __GCS_|' ${WRKSRC}/src/gcs-conf.h Modified: head/graphics/code-eli/Makefile ============================================================================== --- head/graphics/code-eli/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/graphics/code-eli/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -33,6 +33,8 @@ DOXYGEN_BUILD_DEPENDS= ${LOCALBASE}/bin/ DOXYGEN_ALL_TARGET= doc DOXYGEN_PORTDOCS= html latex +BROKEN_armv6= Fails to compile: undefined reference to cbrtl + post-patch-EXAMPLES-off: ${REINPLACE_CMD} \ -e 's/add_subdirectory(example)//g' \ Modified: head/graphics/s10sh/Makefile ============================================================================== --- head/graphics/s10sh/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/graphics/s10sh/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -15,6 +15,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_aarch64= Fails to build: error: can not find the byte order for this architecture, fix bytesex.h +BROKEN_armv6= Fails to build: error: can not find the byte order for this architecture, fix bytesex.h USES= ncurses readline Modified: head/lang/sdcc-devel/Makefile ============================================================================== --- head/lang/sdcc-devel/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/lang/sdcc-devel/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -55,6 +55,8 @@ Z80_CONFIGURE_OFF= --disable-z80 --disab --disable-r2k-port --disable-r3ka-port \ --disable-tlcs90-port +BROKEN_aarch64= Fails to configure: BFD does not support target aarch64-portbld-freebsd11.0 + .include <bsd.port.options.mk> .if ${ARCH} == "amd64" Modified: head/lang/sdcc/Makefile ============================================================================== --- head/lang/sdcc/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/lang/sdcc/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -52,6 +52,8 @@ Z80_CONFIGURE_OFF= --disable-z80 --disab --disable-r2k-port --disable-r3ka-port \ --disable-tlcs90-port +BROKEN_aarch64= Fails to configure: BFD does not support target aarch64-portbld-freebsd11.0 + .include <bsd.port.options.mk> .if ${ARCH} == "amd64" Modified: head/math/amath/Makefile ============================================================================== --- head/math/amath/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/math/amath/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -23,4 +23,7 @@ do-install: do-test: ${WRKSRC}/${PORTNAME} test +BROKEN_aarch64= Fails to compile: must define endianness +BROKEN_armv6= Fails to configure: what cpu is this ?! + .include <bsd.port.mk> Modified: head/math/asir2000/Makefile ============================================================================== --- head/math/asir2000/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/math/asir2000/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -35,6 +35,8 @@ ASIR_DOC= asirdoc-${ASIR_DOC_VERSION}${E GC_SRC= gc-${GC_VERSION}.tar.gz WRKSRC= ${WRKDIR}/asir2000 +BROKEN_aarch64= Fails to compile: the collector has not been ported to this machine/OS combination + LIB_DATA= alpi bfct bgk const cyclic defs.h dfff dmul dmul102 fctrdata \ fctrtest fff glib gr ifplot katsura launch mat nf num primdec \ primdec_lex primdec_mod ratint robot solve sp sturm sym weight xm Modified: head/math/stp/Makefile ============================================================================== --- head/math/stp/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/math/stp/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -19,4 +19,6 @@ USES= bison:build cmake perl5 tar:xz USE_PERL5= build CMAKE_ARGS= -DFL_LIBRARY=/usr/lib/libfl.a +BROKEN_aarch64= Fails to compile: undefined reference to sbrk + .include <bsd.port.mk> Modified: head/multimedia/aegisub/Makefile ============================================================================== --- head/multimedia/aegisub/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/multimedia/aegisub/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -64,6 +64,8 @@ PULSEAUDIO_LIB_DEPENDS= libpulse.so:audi PULSEAUDIO_CONFIGURE_OFF=\ --without-libpulse +BROKEN_aarch64= Fails to compile: no support for this architecture (yet) + # src/audio_display.o: undefined reference to symbol '__atomic_load_8@@LIBATOMIC_1.0' .if empty(CFLAGS:M-march=*) CFLAGS+= ${CFLAGS_${ARCH}_${CHOSEN_COMPILER_TYPE}} Modified: head/multimedia/handbrake/Makefile ============================================================================== --- head/multimedia/handbrake/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/multimedia/handbrake/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -46,6 +46,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/ libmp3lame.so:audio/lame BROKEN_aarch64= Fails to build: invokes x86 asm +BROKEN_armv6= Fails to build: invokes x86 asm .if !defined(PACKAGE_BUILDING) # DVDCSS version hardcoded in contrib/libdvdread/libdvdread-5.0.0-6-gcb1ae87/src/dvd_input.c (dlopen'ed) Modified: head/net-im/ring-daemon/Makefile ============================================================================== --- head/net-im/ring-daemon/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/net-im/ring-daemon/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -57,6 +57,8 @@ DBUS_LIB_DEPENDS= \ libdbus-c++-1.so:devel/dbus-c++ OPTIONS_SUB= yes +BROKEN_aarch64= Fails to configure: machine arm64-portbld not recognized + .include <bsd.port.pre.mk> post-extract: Modified: head/net/chrony/Makefile ============================================================================== --- head/net/chrony/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/net/chrony/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -41,6 +41,8 @@ OPTIONS_DEFINE= IPV6 IPV6_CATEGORIES= ipv6 IPV6_CONFIGURE_OFF= --disable-ipv6 +BROKEN_aarch64= Fails to compile: invalid operands to binary expression (double and double) + post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/chronyc ${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/chronyd Modified: head/security/botan110/Makefile ============================================================================== --- head/security/botan110/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/security/botan110/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -31,6 +31,8 @@ PLIST_FILES= bin/botan-config-1.10 lib/l DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} PORTDOCS= * +BROKEN_aarch64= Fails to configure: unknown or unidentifiable processor arm64 + .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MSSL} Modified: head/textproc/kenlm/Makefile ============================================================================== --- head/textproc/kenlm/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/textproc/kenlm/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -11,8 +11,6 @@ DISTNAME= ${PORTNAME} MAINTAINER= demon@FreeBSD.org COMMENT= KenLM Language Model Toolkit -BROKEN_powerpc64= Does not build - BUILD_DEPENDS= bjam:devel/boost-jam \ bash:shells/bash LIB_DEPENDS= libboost_thread.so:devel/boost-libs @@ -22,6 +20,9 @@ USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} MAKE_ENV+= BOOST_BUILD_PATH=${WRKSRC}/jam-files/boost-build +BROKEN_aarch64= Fails to compile: target architecture was not detected as supported by Double-Conversion +BROKEN_powerpc64= Does not build + do-build: (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/bjam --toolset=${CHOSEN_COMPILER_TYPE} --with-boost=${LOCALBASE} ${_MAKE_JOBS}) Modified: head/textproc/randlm/Makefile ============================================================================== --- head/textproc/randlm/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/textproc/randlm/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -10,8 +10,6 @@ MASTER_SITES= SF/${PORTNAME} MAINTAINER= demon@FreeBSD.org COMMENT= A toolkit for building randomized language models -BROKEN_powerpc64= Does not build - BUILD_DEPENDS= ${LOCALBASE}/include/google/sparse_hash_map:devel/sparsehash LIB_DEPENDS= libboost_thread.so:devel/boost-libs RUN_DEPENDS= ${LOCALBASE}/include/google/sparse_hash_map:devel/sparsehash @@ -26,6 +24,10 @@ CXXFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip +BROKEN_aarch64= Fails to compile: invalid output constraint =a in asm +BROKEN_armv6= Fails to compile: invalid output constraint =a in asm +BROKEN_powerpc64= Does not build + post-patch: cd ${WRKSRC}/hadoop && ${MV} strings.cpp strings.cc && ${MV} strings.h s.h ${REINPLACE_CMD} -e s#strings.h#s.h# ${WRKSRC}/hadoop/r_compute_ngram_counts.cpp ${WRKSRC}/hadoop/m_compute_ngram_counts_batch.cpp Modified: head/www/ufdbguard/Makefile ============================================================================== --- head/www/ufdbguard/Makefile Tue Jan 31 03:28:57 2017 (r432896) +++ head/www/ufdbguard/Makefile Tue Jan 31 03:40:46 2017 (r432897) @@ -12,6 +12,8 @@ COMMENT= URL filter for the Squid web pr LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_aarch64= fails to compile: error: regparm is not valid on this platform + USES= perl5 shebangfix ssl SHEBANG_FILES= samples/URLblocked.cgi GNU_CONFIGURE= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701310340.v0V3ekQu029320>