From owner-svn-ports-all@freebsd.org Tue Jul 25 13:00:14 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 91219C7BB1F; Tue, 25 Jul 2017 13:00:14 +0000 (UTC) (envelope-from jbeich@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 5EE5375EB8; Tue, 25 Jul 2017 13:00:14 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6PD0DQx084662; Tue, 25 Jul 2017 13:00:13 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6PD0DjI084661; Tue, 25 Jul 2017 13:00:13 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707251300.v6PD0DjI084661@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 25 Jul 2017 13:00:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446581 - head/multimedia/assimp X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/assimp X-SVN-Commit-Revision: 446581 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.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: Tue, 25 Jul 2017 13:00:14 -0000 Author: jbeich Date: Tue Jul 25 13:00:13 2017 New Revision: 446581 URL: https://svnweb.freebsd.org/changeset/ports/446581 Log: multimedia/assimp: unbundle minizip The port prefers system minizip if available but the build fails due to an inconsitency between find_package() and pkg_check_modules() about whether _LIBRARIES should contain absolute paths. /usr/bin/ld: cannot find -lminizip c++: error: linker command failed with exit code 1 (use -v to see invocation) https://gitlab.kitware.com/cmake/cmake/issues/15804 PR: 220889 Reported by: vvd@unislabs.com Submitted by: yuri@rawbw.com (maintainer, based on) Modified: head/multimedia/assimp/Makefile (contents, props changed) Modified: head/multimedia/assimp/Makefile ============================================================================== --- head/multimedia/assimp/Makefile Tue Jul 25 12:44:06 2017 (r446580) +++ head/multimedia/assimp/Makefile Tue Jul 25 13:00:13 2017 (r446581) @@ -4,6 +4,7 @@ PORTNAME= assimp PORTVERSION= 4.0.0 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= yuri@rawbw.com @@ -12,9 +13,11 @@ COMMENT= Library to import various 3D model formats in LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +LIB_DEPENDS= libminizip.so:archivers/minizip + BROKEN_powerpc64= Does not build: error: ByteSwap has not been declared -USES= cmake compiler:c++11-lib pkgconfig +USES= cmake compiler:c++11-lib localbase:ldflags pkgconfig USE_GITHUB= yes USE_LDCONFIG= yes