aboutsummaryrefslogtreecommitdiff
path: root/port-files/FreeBSD/x11/lumina-coreutils/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'port-files/FreeBSD/x11/lumina-coreutils/Makefile')
-rw-r--r--port-files/FreeBSD/x11/lumina-coreutils/Makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/port-files/FreeBSD/x11/lumina-coreutils/Makefile b/port-files/FreeBSD/x11/lumina-coreutils/Makefile
new file mode 100644
index 00000000..b20d2a67
--- /dev/null
+++ b/port-files/FreeBSD/x11/lumina-coreutils/Makefile
@@ -0,0 +1,40 @@
+# Created by: Ken Moore <ken@pcbsd.org>
+# $FreeBSD$
+
+PORTNAME= lumina-coreutils
+PORTVERSION= %%CHGVERSION%%
+CATEGORIES= x11
+
+MAINTAINER= kmoore@FreeBSD.org
+COMMENT= Lumina Desktop Environment
+
+LICENSE= BSD3CLAUSE
+
+RUN_DEPENDS= xrandr:x11/xrandr
+
+CONFLICTS= lumina-devel-0*
+
+OPTIONS_DEFINE= I18N
+OPTIONS_DEFAULT= I18N
+I18N_DESC= Install localization files
+
+.include <bsd.port.options.mk>
+
+MAKE_JOBS_UNSAFE=yes
+
+USE_LDCONFIG= yes
+USE_QT5= core gui widgets network svg imageformats \
+ buildtools_build x11extras concurrent
+USES= desktop-file-utils qmake
+USE_GITHUB= yes
+GH_ACCOUNT= trueos
+GH_PROJECT= lumina
+GH_TAGNAME= %%GHTAG%%
+WRKSRC_SUBDIR= src-qt5/core-utils
+
+.if${PORT_OPTIONS:MI18N}
+USE_QT5+= linguist_build
+QMAKE_ARGS+=CONFIG+=WITH_I18N
+.endif
+
+.include <bsd.port.mk>
bgstack15