aboutsummaryrefslogtreecommitdiff
path: root/port-files
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-08-07 15:15:29 -0400
committerKen Moore <ken@ixsystems.com>2017-08-07 15:17:33 -0400
commitd550e9cb668db58c8f818981916a465fb91b4e13 (patch)
treeb86c3446aec8b36ab7ab661230ef7f603614c9ee /port-files
parentA couple quick updates to lumina-mediaplayer: (diff)
downloadlumina-d550e9cb668db58c8f818981916a465fb91b4e13.tar.gz
lumina-d550e9cb668db58c8f818981916a465fb91b4e13.tar.bz2
lumina-d550e9cb668db58c8f818981916a465fb91b4e13.zip
Update the Makefile for lumina-mediaplayer
gstreamer1-plugins-gl is required for video playback to not crash/stop when the video is hidden (such as changing tabs or minimizing the window). The gstreamer1-qt5 package is just a good idea to pull in the other plugins that Qt5 supports.
Diffstat (limited to 'port-files')
-rw-r--r--port-files/FreeBSD/deskutils/lumina-mediaplayer/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/port-files/FreeBSD/deskutils/lumina-mediaplayer/Makefile b/port-files/FreeBSD/deskutils/lumina-mediaplayer/Makefile
index 2a319ee5..1bc0c455 100644
--- a/port-files/FreeBSD/deskutils/lumina-mediaplayer/Makefile
+++ b/port-files/FreeBSD/deskutils/lumina-mediaplayer/Makefile
@@ -11,6 +11,9 @@ COMMENT= Streaming media player from the Lumina Desktop
LICENSE= BSD3CLAUSE
+RUN_DEPENDS= gstreamer1-qt5>=0:multimedia/gstreamer1-qt5 \
+ gstreamer1-plugins-gl>=0:graphics/gstreamer1-plugins-gl
+
OPTIONS_DEFINE= I18N
OPTIONS_DEFAULT= I18N
I18N_DESC= Install localization files
@@ -19,9 +22,9 @@ I18N_DESC= Install localization files
MAKE_JOBS_UNSAFE=yes
+USES= qmake
USE_QT5= core gui widgets network svg \
buildtools_build x11extras multimedia concurrent
-USES= qmake
USE_GITHUB= yes
GH_ACCOUNT= trueos
GH_PROJECT= lumina
bgstack15