diff options
author | Ken Moore <ken@ixsystems.com> | 2016-09-26 13:40:02 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-09-26 13:40:02 -0400 |
commit | 22afab79d52a465f04c5f9752f3958ed0a73551d (patch) | |
tree | 9a11492438c0ab120563a40f4bc834587a6a957c | |
parent | Add auto-detection of GPU acceleration to the start-lumina-desktop utility if... (diff) | |
download | lumina-22afab79d52a465f04c5f9752f3958ed0a73551d.tar.gz lumina-22afab79d52a465f04c5f9752f3958ed0a73551d.tar.bz2 lumina-22afab79d52a465f04c5f9752f3958ed0a73551d.zip |
Adjust the port Makefile for FreeBSD to include the i18n files by default.
-rw-r--r-- | port-files/FreeBSD/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/port-files/FreeBSD/Makefile b/port-files/FreeBSD/Makefile index dc444c31..4ce6a722 100644 --- a/port-files/FreeBSD/Makefile +++ b/port-files/FreeBSD/Makefile @@ -25,10 +25,11 @@ LIB_DEPENDS+= libxcb-ewmh.so:x11/xcb-util-wm \ CONFLICTS= lumina-devel-0* -OPTIONS_DEFINE= MULTIMEDIA TRUEOS -OPTIONS_DEFAULT= MULTIMEDIA +OPTIONS_DEFINE= MULTIMEDIA TRUEOS I18N +OPTIONS_DEFAULT= MULTIMEDIA I18N MULTIMEDIA_DESC= Install multimedia support backend (gstreamer) TRUEOS_DESC= Use the TrueOS system interface settings. +I18N_DESC= Install localization files .include <bsd.port.options.mk> @@ -53,4 +54,8 @@ GH_TAGNAME= %%GHTAG%% QMAKE_ARGS= DEFAULT_SETTINGS=TrueOS .endif +.if${PORT_OPTIONS:MI18N} +QMAKE_ARGS+=WITH_I18N +.endif + .include <bsd.port.mk> |