From owner-svn-ports-all@freebsd.org Sat May 27 20:33:26 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E7C0D849CB; Sat, 27 May 2017 20:33:26 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0D681F7B; Sat, 27 May 2017 20:33:25 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4RKXOF0095106; Sat, 27 May 2017 20:33:24 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4RKXMGA095084; Sat, 27 May 2017 20:33:22 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201705272033.v4RKXMGA095084@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 27 May 2017 20:33:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441874 - in head: astro/tkgeomap audio/siren devel/rubygem-rice graphics/exact-image graphics/exrtools irc/srvx mail/bogofilter misc/libsupertone net-p2p/verlihub-plugins-chatroom net-... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 May 2017 20:33:26 -0000 Author: linimon Date: Sat May 27 20:33:22 2017 New Revision: 441874 URL: https://svnweb.freebsd.org/changeset/ports/441874 Log: Mark some ports failing on armv6, for errors classified as "configure_error". Note: this skips all the ports that _sometimes_ fail with CMake errors. We need to investigate that problem, and find out if it is specific to the qemu environment. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Modified: head/astro/tkgeomap/Makefile head/audio/siren/Makefile head/devel/rubygem-rice/Makefile head/graphics/exact-image/Makefile head/graphics/exrtools/Makefile head/irc/srvx/Makefile head/mail/bogofilter/Makefile head/misc/libsupertone/Makefile head/net-p2p/verlihub-plugins-chatroom/Makefile head/net-p2p/verlihub-plugins-floodprotect/Makefile head/net-p2p/verlihub-plugins-forbid/Makefile head/net-p2p/verlihub-plugins-iplog/Makefile head/net-p2p/verlihub-plugins-isp/Makefile head/net-p2p/verlihub-plugins-luascript/Makefile head/net-p2p/verlihub-plugins-messanger/Makefile head/net-p2p/verlihub-plugins-stats/Makefile head/net/asterisk11/Makefile head/net/asterisk13/Makefile head/net/linknx/Makefile head/security/libprelude/Makefile head/security/pecl-crypto/Makefile head/www/kannel/Makefile Modified: head/astro/tkgeomap/Makefile ============================================================================== --- head/astro/tkgeomap/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/astro/tkgeomap/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -13,6 +13,8 @@ LICENSE= GPLv2 LIB_DEPENDS= libtclgeomap.so:astro/tclgeomap +BROKEN_armv6= fails to configure: shared build specified but could not find shared tclgeomap library + USES+= tk:tea CONFIGURE_ARGS= --with-tclgeomap-include=${LOCALBASE}/include/tclgeomap --with-x \ --x-libraries=${LOCALBASE}/lib --x-includes=${LOCALBASE}/include Modified: head/audio/siren/Makefile ============================================================================== --- head/audio/siren/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/audio/siren/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -17,6 +17,11 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ libvorbis.so:audio/libvorbis \ libwavpack.so:audio/wavpack \ libopusfile.so:audio/opusfile + +BROKEN_armv6= fails to configure: cannot find program /nxb-bin/usr/bin/cc +BROKEN_mips= fails to configure: cannot find program /nxb-bin/usr/bin/cc +BROKEN_mips64= fails to configure: cannot find program /nxb-bin/usr/bin/cc + USES= ncurses pkgconfig HAS_CONFIGURE= yes USE_CSTD= c99 Modified: head/devel/rubygem-rice/Makefile ============================================================================== --- head/devel/rubygem-rice/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/devel/rubygem-rice/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -11,6 +11,7 @@ COMMENT= C++ interface to Rubys C API LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_armv6= fails to configure: could not find ruby.h BROKEN_powerpc64= fails to configure: could not find ruby.h USE_RUBY= yes Modified: head/graphics/exact-image/Makefile ============================================================================== --- head/graphics/exact-image/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/graphics/exact-image/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -23,6 +23,8 @@ LIB_DEPENDS= libagg.so:graphics/agg \ libfreetype.so:print/freetype2 \ libexpat.so:textproc/expat2 +BROKEN_armv6= fails to configure: C++ compiler is not installed or does not work correctly + #hack to get custom exactcode configure script to enable tiff support with #broken headers on c++ in base system: CPPFLAGS+= -fpermissive -I${LOCALBASE}/include Modified: head/graphics/exrtools/Makefile ============================================================================== --- head/graphics/exrtools/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/graphics/exrtools/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -17,6 +17,8 @@ LIB_DEPENDS= libImath-2_2.so:graphics/il libpng.so:graphics/png \ libIlmImf.so:graphics/OpenEXR +BROKEN_armv6= fails to configure: checking for /nxb-bin/usr/bin/cc... no + GNU_CONFIGURE= yes USES= gmake jpeg pkgconfig Modified: head/irc/srvx/Makefile ============================================================================== --- head/irc/srvx/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/irc/srvx/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -12,6 +12,8 @@ COMMENT= Services for ircu P10 protocol LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_armv6= fails to configure: Cannot detect format string for time_t + USES= cpe GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-getopt Modified: head/mail/bogofilter/Makefile ============================================================================== --- head/mail/bogofilter/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/mail/bogofilter/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -12,6 +12,8 @@ COMMENT= Fast, teachable, learning spam LICENSE= GPLv2 +BROKEN_armv6= fails to configure: Cannot open a shared environment in Berkeley DB + .if !defined(MASTERDIR) || ${MASTERDIR} == ${.CURDIR} # building master port USES+= bdb:5+ Modified: head/misc/libsupertone/Makefile ============================================================================== --- head/misc/libsupertone/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/misc/libsupertone/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -17,6 +17,8 @@ LIB_DEPENDS= libaudiofile.so:audio/libau libtiff.so:graphics/tiff \ libxml2.so:textproc/libxml2 +BROKEN_armv6= fails to configure: Can't build without spandsp + USES= tar:tgz libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/net-p2p/verlihub-plugins-chatroom/Makefile ============================================================================== --- head/net-p2p/verlihub-plugins-chatroom/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net-p2p/verlihub-plugins-chatroom/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -9,6 +9,8 @@ MASTER_SITES= SF/verlihub/VH_Chatroom/${ MAINTAINER= me@skylord.ru +BROKEN_armv6= fails to configure: checking for VERLIHUB - version >= 0... no (see config.log) + PLUGIN_DESC= Chatroom .include "../verlihub-plugins/Makefile.plugins" Modified: head/net-p2p/verlihub-plugins-floodprotect/Makefile ============================================================================== --- head/net-p2p/verlihub-plugins-floodprotect/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net-p2p/verlihub-plugins-floodprotect/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -10,6 +10,8 @@ DISTNAME= ${PLUGIN_NAME} MAINTAINER= me@skylord.ru +BROKEN_armv6= fails to configure: checking for VERLIHUB - version >= 0... no (see config.log) + PLUGIN_NAME= floodprot PLUGIN_DESC= Floodprotect Modified: head/net-p2p/verlihub-plugins-forbid/Makefile ============================================================================== --- head/net-p2p/verlihub-plugins-forbid/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net-p2p/verlihub-plugins-forbid/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -9,6 +9,8 @@ MASTER_SITES= SF/verlihub/VH_Forbid/${DI MAINTAINER= me@skylord.ru +BROKEN_armv6= fails to configure: checking for VERLIHUB - version >= 0... no (see config.log) + PLUGIN_DESC= ForbiddenWords .include "../verlihub-plugins/Makefile.plugins" Modified: head/net-p2p/verlihub-plugins-iplog/Makefile ============================================================================== --- head/net-p2p/verlihub-plugins-iplog/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net-p2p/verlihub-plugins-iplog/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -9,6 +9,8 @@ MASTER_SITES= SF/verlihub/VH_IPLog/${DIS MAINTAINER= me@skylord.ru +BROKEN_armv6= fails to configure: checking for VERLIHUB - version >= 0... no (see config.log) + PLUGIN_DESC= IPLog .include "../verlihub-plugins/Makefile.plugins" Modified: head/net-p2p/verlihub-plugins-isp/Makefile ============================================================================== --- head/net-p2p/verlihub-plugins-isp/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net-p2p/verlihub-plugins-isp/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -9,6 +9,8 @@ MASTER_SITES= SF/verlihub/VH_ISP/${DISTV MAINTAINER= me@skylord.ru +BROKEN_armv6= fails to configure: checking for VERLIHUB - version >= 0... no (see config.log) + PLUGIN_DESC= ISP PLIST_FILES= share/verlihub/default_pi_isp.sql Modified: head/net-p2p/verlihub-plugins-luascript/Makefile ============================================================================== --- head/net-p2p/verlihub-plugins-luascript/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net-p2p/verlihub-plugins-luascript/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -10,6 +10,8 @@ MASTER_SITES= SF/verlihub/VH_Lua/${DISTV MAINTAINER= me@skylord.ru +BROKEN_armv6= fails to configure: checking for VERLIHUB - version >= 0... no (see config.log) + PLUGIN_NAME= lua PLUGIN_DESC= LuaScript Modified: head/net-p2p/verlihub-plugins-messanger/Makefile ============================================================================== --- head/net-p2p/verlihub-plugins-messanger/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net-p2p/verlihub-plugins-messanger/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -9,6 +9,8 @@ MASTER_SITES= SF/verlihub/VH_Messanger/$ MAINTAINER= me@skylord.ru +BROKEN_armv6= fails to configure: checking for VERLIHUB - version >= 0... no (see config.log) + PLUGIN_DESC= Messanger .include "../verlihub-plugins/Makefile.plugins" Modified: head/net-p2p/verlihub-plugins-stats/Makefile ============================================================================== --- head/net-p2p/verlihub-plugins-stats/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net-p2p/verlihub-plugins-stats/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -9,6 +9,8 @@ MASTER_SITES= SF/verlihub/VH_Stats/${DIS MAINTAINER= me@skylord.ru +BROKEN_armv6= fails to configure: checking for VERLIHUB - version >= 0... no (see config.log) + PLUGIN_DESC= Statistics .include "../verlihub-plugins/Makefile.plugins" Modified: head/net/asterisk11/Makefile ============================================================================== --- head/net/asterisk11/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net/asterisk11/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -19,7 +19,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE EXTRACT_ONLY:= ${DISTNAME}${EXTRACT_SUFX} -ONLY_FOR_ARCHS= i386 amd64 powerpc sparc64 armv6 +BROKEN_armv6= fails to configure: the SPANDSP installation appears to be missing or broken +ONLY_FOR_ARCHS= armv6 amd64 i386 powerpc sparc64 USES= bison cpe gmake iconv localbase ncurses shebangfix \ sqlite ssl Modified: head/net/asterisk13/Makefile ============================================================================== --- head/net/asterisk13/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net/asterisk13/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -19,9 +19,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid \ libjansson.so:devel/jansson -EXTRACT_ONLY:= ${DISTNAME}${EXTRACT_SUFX} +BROKEN_armv6= fails to configure: the SPANDSP installation appears to be missing or broken +ONLY_FOR_ARCHS= armv6 amd64 i386 powerpc sparc64 -ONLY_FOR_ARCHS= i386 amd64 powerpc sparc64 armv6 +EXTRACT_ONLY:= ${DISTNAME}${EXTRACT_SUFX} USES= bison cpe gmake iconv libedit localbase \ shebangfix sqlite ssl ncurses Modified: head/net/linknx/Makefile ============================================================================== --- head/net/linknx/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/net/linknx/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -14,6 +14,10 @@ LICENSE= GPLv2 LIB_DEPENDS= libpthsem.so:devel/pthsem BUILD_DEPENDS= ${LOCALBASE}/lib/libargp.a:devel/argp-standalone +BROKEN_armv6= fails to configure: checking for GNU Pth... Segmentation fault +BROKEN_mips= fails to configure: checking for GNU Pth... Segmentation fault +BROKEN_mips64= fails to configure: checking for GNU Pth... Segmentation fault + USES= gmake autoreconf pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS+=CFLAGS="-I${LOCALBASE}/include" \ Modified: head/security/libprelude/Makefile ============================================================================== --- head/security/libprelude/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/security/libprelude/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -16,6 +16,8 @@ LIB_DEPENDS= libltdl.so:devel/libltdl \ libgnutls.so:security/gnutls \ libgcrypt.so:security/libgcrypt +BROKEN_armv6= fails to configure: Easybindings require a C++ compiler, but none were found + OPTIONS_DEFINE= DOCS PERL PYTHON OPTIONS_SUB= yes Modified: head/security/pecl-crypto/Makefile ============================================================================== --- head/security/pecl-crypto/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/security/pecl-crypto/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -10,6 +10,7 @@ COMMENT= Objective wrapper for OpenSSL C LICENSE= PHP301 +BROKEN_armv6= fails to configure: C compiler cannot create executables BROKEN_mips= fails to configure: C compiler cannot create executables BROKEN_mips64= fails to configure: C compiler cannot create executables BROKEN_powerpc64= fails to configure: C compiler cannot create executables Modified: head/www/kannel/Makefile ============================================================================== --- head/www/kannel/Makefile Sat May 27 20:14:35 2017 (r441873) +++ head/www/kannel/Makefile Sat May 27 20:33:22 2017 (r441874) @@ -19,6 +19,8 @@ LICENSE_PERMS= dist-mirror dist-sell pkg LIB_DEPENDS= libpcre.so:devel/pcre +BROKEN_armv6= fails to configure: Unable to find MySQL client libraries + PORTSCOUT= skipv:1.5.0 USERS= kannel