aboutsummaryrefslogtreecommitdiff
path: root/port-files-master/Makefile
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2016-08-08 08:48:42 -0400
committerKen Moore <ken@pcbsd.org>2016-08-08 08:48:42 -0400
commit4714fcf3ed34980e5e206ebf247b0e6871d63146 (patch)
tree951873babcf45cb5c86ce5fcdd371767f852ef8f /port-files-master/Makefile
parentAdd a simple check to the panel update routine to verify that the "_NET_WM_ST... (diff)
parentAdd the missing Makefile, and fix missing USE_GL in meantime (diff)
downloadlumina-4714fcf3ed34980e5e206ebf247b0e6871d63146.tar.gz
lumina-4714fcf3ed34980e5e206ebf247b0e6871d63146.tar.bz2
lumina-4714fcf3ed34980e5e206ebf247b0e6871d63146.zip
Merge branch 'master' of github.com:trueos/lumina
Diffstat (limited to 'port-files-master/Makefile')
-rw-r--r--port-files-master/Makefile53
1 files changed, 53 insertions, 0 deletions
diff --git a/port-files-master/Makefile b/port-files-master/Makefile
new file mode 100644
index 00000000..58adc55e
--- /dev/null
+++ b/port-files-master/Makefile
@@ -0,0 +1,53 @@
+# Created by: Ken Moore <ken@pcbsd.org>
+# $FreeBSD$
+
+PORTNAME= lumina
+PORTVERSION= %%CHGVERSION%%
+PORTEPOCH= 1
+CATEGORIES= x11
+
+MAINTAINER= kmoore@FreeBSD.org
+COMMENT= Lumina Desktop Environment
+
+LICENSE= BSD3CLAUSE
+
+RUN_DEPENDS= fluxbox>=0:x11-wm/fluxbox \
+ kde4-icons-oxygen>=0:x11-themes/kde4-icons-oxygen \
+ xscreensaver:x11/xscreensaver \
+ xbrightness:x11/xbrightness \
+ compton:x11-wm/compton \
+ xrandr:x11/xrandr \
+ numlockx:x11/numlockx
+
+CONFLICTS= lumina-devel-0*
+
+OPTIONS_DEFINE= MULTIMEDIA TRUEOS
+OPTIONS_DEFAULT= MULTIMEDIA
+MULTIMEDIA_DESC= Install multimedia support backend (gstreamer)
+TRUEOS_DESC= Use the TrueOS system interface settings.
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MMULTIMEDIA}
+RUN_DEPENDS+= gstreamer1-plugins-core>=0:multimedia/gstreamer1-plugins-core
+.endif
+
+MAKE_JOBS_UNSAFE=yes
+
+USE_GL= gl
+USE_XORG= x11 xdamage xcb
+USE_XCB= x11extras wm ewmh util-wm
+USE_LDCONFIG= yes
+USE_QT5= core gui widgets network svg multimedia imageformats \
+ buildtools_build x11extras concurrent
+USES= desktop-file-utils qmake
+USE_GITHUB= yes
+GH_ACCOUNT= trueos
+GH_TAGNAME= %%GHTAG%%
+
+#Setup the qmake configuration options
+.if ${PORT_OPTIONS:MTRUEOS}
+QMAKE_ARGS= DEFAULT_SETTINGS=TrueOS
+.endif
+
+.include <bsd.port.mk>
bgstack15