1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00
freebsd-ports/x11/thingylaunch/Makefile
Gerald Pfeifer 04d6f52202 Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using using Mk/bsd.octave.mk which in turn has USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
   c++11-lang, c++0x, c11, or gcc-c++11-lib.

PR:		216707
2017-04-01 15:23:30 +00:00

45 lines
859 B
Makefile

# Created by: Pietro Cerutti <gahr@FreeBSD.org>
# $FreeBSD$
PORTNAME= thingylaunch
PORTVERSION= 2.0.3
PORTREVISION= 2
CATEGORIES= x11
MASTER_SITES= http://gahr.ch/thingylaunch/
MAINTAINER= gahr@FreeBSD.org
COMMENT= Lightweight launcher for X
LICENSE= MIT BSD2CLAUSE
LICENSE_COMB= multi
OPTIONS_SINGLE= X11
OPTIONS_SINGLE_X11= LIBX11 LIBXCB
LIBX11_DESC= Build against libX11
LIBXCB_DESC= Build against libXCB
OPTIONS_DEFAULT= LIBX11
USE_XORG= xproto
USE_CXXSTD= c++11
USES= cmake:outsource compiler:c++11-lib
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MLIBX11}
USE_XORG+= x11
.endif
.if ${PORT_OPTIONS:MLIBXCB}
USE_XORG+= xcb
LIB_DEPENDS+= libxcb-icccm.so:x11/xcb-util-wm \
libxcb-keysyms.so:x11/xcb-util-keysyms
CMAKE_ARGS+= -DUSE_XCB:BOOL=ON
.endif
USE_GITHUB= yes
GH_ACCOUNT= gahr
PLIST_FILES= bin/${PORTNAME}
.include <bsd.port.mk>