2017-09-18 19:45:33 +02:00
|
|
|
# Created by: Ken Moore <ken@pcbsd.org>
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= lumina-core
|
2017-11-02 22:41:47 +01:00
|
|
|
DISTVERSIONPREFIX= v
|
|
|
|
DISTVERSION= 1.3.0
|
2017-09-20 16:16:35 +02:00
|
|
|
DISTVERSIONSUFFIX= -p1
|
2017-09-18 19:45:33 +02:00
|
|
|
CATEGORIES= x11
|
|
|
|
|
|
|
|
MAINTAINER= kmoore@FreeBSD.org
|
|
|
|
COMMENT= Lumina Desktop Environment
|
|
|
|
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
|
|
|
|
RUN_DEPENDS= fluxbox>=0:x11-wm/fluxbox \
|
|
|
|
xscreensaver>=0:x11/xscreensaver \
|
|
|
|
xbrightness>=0:x11/xbrightness \
|
|
|
|
compton>=0:x11-wm/compton \
|
|
|
|
xrandr>=0:x11/xrandr \
|
|
|
|
numlockx>=0: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_INSTALL= lumina-1.2.*
|
|
|
|
|
|
|
|
OPTIONS_DEFINE= MULTIMEDIA TRUEOS I18N
|
|
|
|
OPTIONS_DEFAULT= MULTIMEDIA I18N
|
|
|
|
MULTIMEDIA_DESC= Install multimedia support backend (gstreamer)
|
|
|
|
TRUEOS_DESC= Use the TrueOS system interface settings.
|
2017-11-02 22:41:47 +01:00
|
|
|
I18N_DESC= Install localization files
|
2017-09-18 19:45:33 +02:00
|
|
|
|
|
|
|
.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_LDCONFIG= yes
|
|
|
|
USE_QT5= core gui widgets network svg multimedia imageformats \
|
|
|
|
buildtools_build x11extras concurrent
|
|
|
|
USES= qmake
|
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= trueos
|
|
|
|
GH_PROJECT= lumina
|
|
|
|
WRKSRC_SUBDIR= src-qt5/core
|
|
|
|
|
|
|
|
#Setup the qmake configuration options
|
|
|
|
.if ${PORT_OPTIONS:MTRUEOS}
|
|
|
|
QMAKE_ARGS= DEFAULT_SETTINGS=TrueOS
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if${PORT_OPTIONS:MI18N}
|
2017-11-02 22:41:47 +01:00
|
|
|
USE_QT5+= linguist_build
|
|
|
|
QMAKE_ARGS+= CONFIG+=WITH_I18N
|
2017-09-18 19:45:33 +02:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|