aboutsummaryrefslogtreecommitdiff
path: root/port-files/FreeBSD
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-30 09:35:22 -0400
committerKen Moore <ken@ixsystems.com>2017-06-30 09:35:22 -0400
commit0ae14beefc77b67828465b04f15834f810029f0e (patch)
treeb7da1c603eb27b441a40b71c8368c77511ca8fe2 /port-files/FreeBSD
parentOops - missed a character in lumina-calculator Makefile (diff)
downloadlumina-0ae14beefc77b67828465b04f15834f810029f0e.tar.gz
lumina-0ae14beefc77b67828465b04f15834f810029f0e.tar.bz2
lumina-0ae14beefc77b67828465b04f15834f810029f0e.zip
Fix up some more of the lumina-calculator Makefile - it also needs the X11/XCB dependencies explicitly listed
Diffstat (limited to 'port-files/FreeBSD')
-rw-r--r--port-files/FreeBSD/deskutils/lumina-calculator/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/port-files/FreeBSD/deskutils/lumina-calculator/Makefile b/port-files/FreeBSD/deskutils/lumina-calculator/Makefile
index 8fa281a8..3e85119f 100644
--- a/port-files/FreeBSD/deskutils/lumina-calculator/Makefile
+++ b/port-files/FreeBSD/deskutils/lumina-calculator/Makefile
@@ -11,6 +11,11 @@ COMMENT= Scientific calculator from the Lumina Desktop
LICENSE= BSD3CLAUSE
+LIB_DEPENDS+= libxcb-ewmh.so:x11/xcb-util-wm \
+ libxcb-icccm.so:x11/xcb-util-wm \
+ libxcb-image.so:x11/xcb-util-image \
+ libxcb-util.so:x11/xcb-util
+
CONFLICTS_INSTALL= lumina-1.2.*
OPTIONS_DEFINE= I18N
@@ -21,6 +26,8 @@ I18N_DESC= Install localization files
MAKE_JOBS_UNSAFE=yes
+USE_GL= gl
+USE_XORG= x11 xdamage xcb
USE_QT5= core gui widgets network svg \
buildtools_build x11extras concurrent multimedia
USES= qmake
bgstack15