From owner-svn-ports-all@freebsd.org Wed Aug 16 00:07:59 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 8AD27DD6ED2; Wed, 16 Aug 2017 00:07:59 +0000 (UTC) (envelope-from feld@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 51BD565AA2; Wed, 16 Aug 2017 00:07:59 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7G07w7Y021606; Wed, 16 Aug 2017 00:07:58 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7G07wWW021605; Wed, 16 Aug 2017 00:07:58 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708160007.v7G07wWW021605@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 16 Aug 2017 00:07:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448018 - branches/2017Q3/irc/weechat X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/irc/weechat X-SVN-Commit-Revision: 448018 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: Wed, 16 Aug 2017 00:07:59 -0000 Author: feld Date: Wed Aug 16 00:07:58 2017 New Revision: 448018 URL: https://svnweb.freebsd.org/changeset/ports/448018 Log: MFH: r447942 irc/weechat: Depend on libunwind for RUBY - Ruby on amd64/i386 uses libunwind causing weechat to link it as well Reported by: koobs Approved by: port-secteam (with hat) Modified: branches/2017Q3/irc/weechat/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/irc/weechat/Makefile ============================================================================== --- branches/2017Q3/irc/weechat/Makefile Tue Aug 15 23:43:24 2017 (r448017) +++ branches/2017Q3/irc/weechat/Makefile Wed Aug 16 00:07:58 2017 (r448018) @@ -97,6 +97,10 @@ CMAKE_ARGS+= -DENABLE_PYTHON3:BOOL=true \ -DPYTHON_LIBRARY:FILEPATH=${LOCALBASE}/lib/libpython${PYTHON_VER}m.so .endif +.if !empty(PORT_OPTIONS:MRUBY) && (${ARCH} == "amd64" || ${ARCH} == "i386") +LIB_DEPENDS+= libunwind.so:devel/libunwind +.endif + post-patch: @${REINPLACE_CMD} -e 's|$${LIBDIR}/../pkgconfig|$${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|' \ ${WRKSRC}/CMakeLists.txt