2012-10-11 15:22:53 +02:00
|
|
|
# Created by: Pietro Cerutti <gahr@FreeBSD.org>
|
2009-10-01 22:57:16 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= thingylaunch
|
2014-08-04 14:23:47 +02:00
|
|
|
PORTVERSION= 2.0.3
|
2014-09-10 22:50:31 +02:00
|
|
|
PORTREVISION= 1
|
2009-10-01 22:57:16 +02:00
|
|
|
CATEGORIES= x11
|
2014-04-03 13:57:50 +02:00
|
|
|
MASTER_SITES= http://gahr.ch/thingylaunch/
|
2009-10-01 22:57:16 +02:00
|
|
|
|
2015-11-25 14:28:45 +01:00
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
2014-04-14 16:30:41 +02:00
|
|
|
COMMENT= Lightweight launcher for X
|
2009-10-01 22:57:16 +02:00
|
|
|
|
2014-04-03 13:57:50 +02:00
|
|
|
LICENSE= MIT BSD2CLAUSE
|
2013-05-17 21:28:04 +02:00
|
|
|
LICENSE_COMB= multi
|
2012-02-02 13:51:16 +01:00
|
|
|
|
2014-04-14 16:30:41 +02:00
|
|
|
OPTIONS_SINGLE= X11
|
|
|
|
OPTIONS_SINGLE_X11= LIBX11 LIBXCB
|
|
|
|
LIBX11_DESC= Build against libX11
|
|
|
|
LIBXCB_DESC= Build against libXCB
|
|
|
|
OPTIONS_DEFAULT= LIBX11
|
|
|
|
|
|
|
|
USE_XORG= xproto
|
2014-04-08 11:45:48 +02:00
|
|
|
USE_CXXSTD= c++11
|
|
|
|
USES= cmake:outsource compiler:c++11-lib
|
|
|
|
|
2014-04-14 16:30:41 +02:00
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
|
|
|
.if ${PORT_OPTIONS:MLIBX11}
|
|
|
|
USE_XORG+= x11
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${PORT_OPTIONS:MLIBXCB}
|
|
|
|
USE_XORG+= xcb
|
2016-04-01 16:33:55 +02:00
|
|
|
LIB_DEPENDS+= libxcb-icccm.so:x11/xcb-util-wm \
|
|
|
|
libxcb-keysyms.so:x11/xcb-util-keysyms
|
2014-04-14 16:30:41 +02:00
|
|
|
CMAKE_ARGS+= -DUSE_XCB:BOOL=ON
|
|
|
|
.endif
|
2009-10-01 22:57:16 +02:00
|
|
|
|
2013-05-17 21:28:04 +02:00
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= gahr
|
2009-10-01 22:57:16 +02:00
|
|
|
|
2013-05-17 21:28:04 +02:00
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
2009-10-01 22:57:16 +02:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|