aboutsummaryrefslogtreecommitdiff
path: root/port-files/FreeBSD
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-28 13:14:39 -0400
committerKen Moore <moorekou@gmail.com>2016-06-28 13:14:39 -0400
commitc1ef1645eb0ca856f5f5cb6c4acb9fc1115ca88f (patch)
tree24a29b31675051dda0362859c21ab89a4cd57503 /port-files/FreeBSD
parentCleanup the build system for how the special OS-specific config file/wallpape... (diff)
downloadlumina-c1ef1645eb0ca856f5f5cb6c4acb9fc1115ca88f.tar.gz
lumina-c1ef1645eb0ca856f5f5cb6c4acb9fc1115ca88f.tar.bz2
lumina-c1ef1645eb0ca856f5f5cb6c4acb9fc1115ca88f.zip
Update the coming-soon 0.9.1 port makefile for FreeBSD, and also setup the "DEFAULT_SETTINGS=<OS>" build flag for installing config files or desktop wallpapers for other OS's.
Diffstat (limited to 'port-files/FreeBSD')
-rw-r--r--port-files/FreeBSD/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/port-files/FreeBSD/Makefile b/port-files/FreeBSD/Makefile
index 34004c0b..989a0b8f 100644
--- a/port-files/FreeBSD/Makefile
+++ b/port-files/FreeBSD/Makefile
@@ -24,10 +24,10 @@ RUN_DEPENDS= xorg>=0:${PORTSDIR}/x11/xorg-minimal \
CONFLICTS= lumina-devel-0*
-OPTIONS_DEFINE= MULTIMEDIA PCBSD
+OPTIONS_DEFINE= MULTIMEDIA TRUEOS
OPTIONS_DEFAULT= MULTIMEDIA
MULTIMEDIA_DESC= Install multimedia support backend (gstreamer)
-PCBSD_DESC= Use the TrueOS system interface settings.
+TRUEOS_DESC= Use the TrueOS system interface settings.
.include <bsd.port.options.mk>
@@ -44,11 +44,12 @@ USE_QT5= core gui network svg multimedia imageformats \
buildtools_build x11extras concurrent
USES= desktop-file-utils qmake
USE_GITHUB= yes
-GH_ACCOUNT= pcbsd
+GH_ACCOUNT= trueos
#Setup the qmake configuration options
-.if {PORT_OPTIONS:MPCBSD}
-QMAKE_ARGS= CONFIG+="configure PCBSD"
+.if {PORT_OPTIONS:MTRUEOS}
+QMAKE_ARGS= CONFIG+="configure" \
+ DEFAULT_SETTINGS=TrueOS
.endif
.include <bsd.port.mk>
bgstack15