aboutsummaryrefslogtreecommitdiff
path: root/port-files/FreeBSD/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'port-files/FreeBSD/Makefile')
-rw-r--r--port-files/FreeBSD/Makefile14
1 files changed, 6 insertions, 8 deletions
diff --git a/port-files/FreeBSD/Makefile b/port-files/FreeBSD/Makefile
index f8f238dc..dc444c31 100644
--- a/port-files/FreeBSD/Makefile
+++ b/port-files/FreeBSD/Makefile
@@ -3,7 +3,7 @@
PORTNAME= lumina
PORTVERSION= %%CHGVERSION%%
-PORTEPOCH= 1
+PORTEPOCH= 2
CATEGORIES= x11
MAINTAINER= kmoore@FreeBSD.org
@@ -18,8 +18,12 @@ RUN_DEPENDS= fluxbox>=0:x11-wm/fluxbox \
compton:x11-wm/compton \
xrandr:x11/xrandr \
numlockx:x11/numlockx
+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= lumina-devel-0*
+CONFLICTS= lumina-devel-0*
OPTIONS_DEFINE= MULTIMEDIA TRUEOS
OPTIONS_DEFAULT= MULTIMEDIA
@@ -44,12 +48,6 @@ USE_GITHUB= yes
GH_ACCOUNT= trueos
GH_TAGNAME= %%GHTAG%%
-#Setup the XCB library dependencies (USE_XCB macro does not appear to exist anymore)
-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
-
#Setup the qmake configuration options
.if ${PORT_OPTIONS:MTRUEOS}
QMAKE_ARGS= DEFAULT_SETTINGS=TrueOS
bgstack15