Bump x11/kde4-runtime to version 4.14.3_3
[dports.git] / x11 / thingylaunch / Makefile
1 # Created by: Pietro Cerutti <gahr@FreeBSD.org>
2 # $FreeBSD$
3
4 PORTNAME=       thingylaunch
5 PORTVERSION=    2.0.3
6 PORTREVISION=   1
7 CATEGORIES=     x11
8 MASTER_SITES=   http://gahr.ch/thingylaunch/
9
10 MAINTAINER=     gahr@FreeBSD.org
11 COMMENT=        Lightweight launcher for X
12
13 LICENSE=        MIT BSD2CLAUSE
14 LICENSE_COMB=   multi
15
16 OPTIONS_SINGLE=         X11
17 OPTIONS_SINGLE_X11=     LIBX11 LIBXCB
18 LIBX11_DESC=            Build against libX11
19 LIBXCB_DESC=            Build against libXCB
20 OPTIONS_DEFAULT=        LIBX11
21
22 USE_XORG=       xproto
23 USE_CXXSTD=     c++11
24 USES=           cmake:outsource compiler:c++11-lib
25
26 .include <bsd.port.options.mk>
27
28 .if ${PORT_OPTIONS:MLIBX11}
29 USE_XORG+=      x11
30 .endif
31
32 .if ${PORT_OPTIONS:MLIBXCB}
33 USE_XORG+=      xcb
34 LIB_DEPENDS+=   libxcb-icccm.so:x11/xcb-util-wm \
35                 libxcb-keysyms.so:x11/xcb-util-keysyms
36 CMAKE_ARGS+=    -DUSE_XCB:BOOL=ON
37 .endif
38
39 USE_GITHUB=     yes
40 GH_ACCOUNT=     gahr
41
42 PLIST_FILES=    bin/${PORTNAME}
43
44 .include <bsd.port.mk>