mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
28045dbddc
- Update to 1.6.0 - Take MAINTAINER'ship - Add missing USE_GL - Fix order of options in Makefiles Changelog: - Lumina: https://github.com/lumina-desktop/lumina/compare/v1.5.0...v1.6.0 - Lumina-pdf: https://github.com/lumina-desktop/lumina-pdf/compare/v1.5.0...v1.6.0 - Lumina-calculator: https://github.com/lumina-desktop/lumina-calculator/compare/v1.5.0...v1.6.0 PR: 243895 Reviewed by: mat, tcberner Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D23603
56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
# Created by: Ken Moore <ken@pcbsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lumina-core
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.6.0
|
|
CATEGORIES= x11
|
|
|
|
MAINTAINER= lbartoletti@FreeBSD.org
|
|
COMMENT= Lumina Desktop Environment
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/../../LICENSE
|
|
|
|
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 \
|
|
libXcursor.so:x11/libXcursor
|
|
|
|
USES= compiler:c++11-lang gl qmake qt:5 xorg
|
|
USE_GL= gl
|
|
USE_XORG= x11 xdamage xcb
|
|
USE_LDCONFIG= yes
|
|
USE_QT= buildtools_build concurrent core dbus gui imageformats \
|
|
multimedia network svg widgets x11extras
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= lumina-desktop
|
|
GH_PROJECT= lumina
|
|
|
|
OPTIONS_DEFINE= MULTIMEDIA TRUEOS NLS
|
|
OPTIONS_DEFAULT= MULTIMEDIA
|
|
OPTIONS_SUB= yes
|
|
|
|
MULTIMEDIA_DESC= Install multimedia support backend (gstreamer)
|
|
TRUEOS_DESC= Use the TrueOS system interface settings.
|
|
|
|
TRUEOS_QMAKE_ON= DEFAULT_SETTINGS=TrueOS
|
|
|
|
MULTIMEDIA_RUN_DEPENDS= gstreamer1-plugins-core>=0:multimedia/gstreamer1-plugins-core
|
|
|
|
NLS_USE= QT=linguist_build
|
|
NLS_QMAKE_ON= CONFIG+=WITH_I18N
|
|
|
|
WRKSRC_SUBDIR= src-qt5/core
|
|
|
|
CONFLICTS_INSTALL= lumina-1.2.*
|
|
|
|
.include <bsd.port.mk>
|