Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Oct 2018 20:24:52 +0000 (UTC)
From:      Koop Mast <kwm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r482009 - head/x11/brisk-menu
Message-ID:  <201810132024.w9DKOqDi090724@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <lantw44@gmail.com>

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 <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810132024.w9DKOqDi090724>