mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
a9f015d155
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
36 lines
711 B
Makefile
36 lines
711 B
Makefile
# Created by: Eric Turgeon <ericbsd@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= brisk-menu
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.5.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11
|
|
|
|
MAINTAINER= ericbsd@FreeBSD.org
|
|
COMMENT= Brisk Menu is an efficient menu for the MATE Desktop
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libnotify.so:devel/libnotify
|
|
|
|
USES= compiler:c11 gnome mate meson ninja pkgconfig gettext
|
|
MESON_ARGS= --sysconfdir=${PREFIX}/etc
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= GhostBSD
|
|
|
|
USE_GNOME= gtk30
|
|
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>
|