From owner-svn-ports-all@freebsd.org Tue Sep 18 13:03:45 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 03DB9109DB76; Tue, 18 Sep 2018 13:03:45 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AEB958FBFE; Tue, 18 Sep 2018 13:03:44 +0000 (UTC) (envelope-from manu@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9BCD20569; Tue, 18 Sep 2018 13:03:44 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8ID3iWe014374; Tue, 18 Sep 2018 13:03:44 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8ID3iNG014373; Tue, 18 Sep 2018 13:03:44 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201809181303.w8ID3iNG014373@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Tue, 18 Sep 2018 13:03:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480019 - head/misc/raspberrypi-userland X-SVN-Group: ports-head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: head/misc/raspberrypi-userland X-SVN-Commit-Revision: 480019 X-SVN-Commit-Repository: ports 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.27 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: Tue, 18 Sep 2018 13:03:45 -0000 Author: manu Date: Tue Sep 18 13:03:44 2018 New Revision: 480019 URL: https://svnweb.freebsd.org/changeset/ports/480019 Log: misc/raspberrypi-userland: Unbreak on armv7 Set LLD_UNSAFE as it's needed to link. While here pet portlint. Tested-On: RPI2 Approved by: mikael.urankar@gmail.com (maintainer), bapt (mentor) Differential Revision: https://reviews.freebsd.org/D17203 Modified: head/misc/raspberrypi-userland/Makefile Modified: head/misc/raspberrypi-userland/Makefile ============================================================================== --- head/misc/raspberrypi-userland/Makefile Tue Sep 18 13:02:39 2018 (r480018) +++ head/misc/raspberrypi-userland/Makefile Tue Sep 18 13:03:44 2018 (r480019) @@ -14,14 +14,13 @@ ONLY_FOR_ARCHS= armv6 armv7 CONFLICTS_INSTALL= libglesv2 libEGL +USES= cmake:outsource pkgconfig shebangfix + USE_GITHUB= yes GH_ACCOUNT= gonzoua GH_PROJECT= userland GH_TAGNAME= e143b48 -USE_LDCONFIG= yes - -USES= cmake:outsource pkgconfig shebangfix CMAKE_ARGS+= -DVMCS_INSTALL_PREFIX=${PREFIX} \ -DCMAKE_TOOLCHAIN_FILE=${WRKSRC}/makefiles/cmake/toolchains/arm-freebsd.cmake SHEBANG_FILES= host_applications/linux/apps/dtoverlay/dtoverlay-post \ @@ -32,6 +31,10 @@ EXAMPLES_DESC= Install test applications source code ( EXAMPLES_LIB_DEPENDS= libfreetype.so:print/freetype2 DEBUG_CFLAGS_OFF= -DNDEBUG + +USE_LDCONFIG= yes + +LLD_UNSAFE= yes post-patch: @${REINPLACE_CMD} -e "s|/opt/vc|${PREFIX}|g" \