From owner-svn-ports-all@freebsd.org Sat Oct 13 20:24:53 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 1325E10D493D; Sat, 13 Oct 2018 20:24:53 +0000 (UTC) (envelope-from kwm@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 A8C54890B9; Sat, 13 Oct 2018 20:24:52 +0000 (UTC) (envelope-from kwm@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 9641113D9D; Sat, 13 Oct 2018 20:24:52 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9DKOqDh090725; Sat, 13 Oct 2018 20:24:52 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9DKOqDi090724; Sat, 13 Oct 2018 20:24:52 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201810132024.w9DKOqDi090724@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sat, 13 Oct 2018 20:24:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482009 - head/x11/brisk-menu X-SVN-Group: ports-head X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: head/x11/brisk-menu X-SVN-Commit-Revision: 482009 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: Sat, 13 Oct 2018 20:24:53 -0000 Author: kwm Date: Sat Oct 13 20:24:52 2018 New Revision: 482009 URL: https://svnweb.freebsd.org/changeset/ports/482009 Log: Resolve some problems that where exposed by the meson 0.48.0 exp-run. * Drop NO_ARCH, libexec/brisk-menu is a native ELF executable. * List USE_MATE=menus because brisk-menu depends on it directly. Use either /usr/bin/ld.lld or the ld from the binutils port. To work around a issue with /usr/bin/ld.bdf reporting errors for symbols that exist in shared libraries specified on the command line. It is unknown why this is happening. PR: 231219 Submitted by: Ting-Wei Lan Modified: head/x11/brisk-menu/Makefile Modified: head/x11/brisk-menu/Makefile ============================================================================== --- head/x11/brisk-menu/Makefile Sat Oct 13 20:15:44 2018 (r482008) +++ head/x11/brisk-menu/Makefile Sat Oct 13 20:24:52 2018 (r482009) @@ -4,6 +4,7 @@ PORTNAME= brisk-menu DISTVERSIONPREFIX= v DISTVERSION= 0.5.1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= ericbsd@FreeBSD.org @@ -20,9 +21,15 @@ MESON_ARGS= --sysconfdir=${PREFIX}/etc USE_GITHUB= yes GH_ACCOUNT= GhostBSD -NO_ARCH= yes USE_GNOME= gtk30 -USE_MATE= panel:lib +USE_MATE= menus panel GLIB_SCHEMAS= com.solus-project.brisk-menu.gschema.xml + +.if exists(/usr/bin/ld.lld) +LDFLAGS+= -fuse-ld=lld +.else +USE_BINUTILS= yes +LDFLAGS+= -B${LOCALBASE}/bin +.endif .include