aboutsummaryrefslogtreecommitdiff
path: root/port-files/FreeBSD/deskutils/lumina-pdf/Makefile
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2017-08-17 16:02:53 +0000
committerWeblate <noreply@weblate.org>2017-08-17 16:02:53 +0000
commite22937e90e6be7820e11cc9eba47bd0fb1b394e9 (patch)
treebb65904fd9aeee5e6325d12675e10f58cee25b80 /port-files/FreeBSD/deskutils/lumina-pdf/Makefile
parentTranslated using Weblate (Spanish) (diff)
parentMerge remote-tracking branch 'origin/master' (diff)
downloadlumina-e22937e90e6be7820e11cc9eba47bd0fb1b394e9.tar.gz
lumina-e22937e90e6be7820e11cc9eba47bd0fb1b394e9.tar.bz2
lumina-e22937e90e6be7820e11cc9eba47bd0fb1b394e9.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'port-files/FreeBSD/deskutils/lumina-pdf/Makefile')
-rw-r--r--port-files/FreeBSD/deskutils/lumina-pdf/Makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/port-files/FreeBSD/deskutils/lumina-pdf/Makefile b/port-files/FreeBSD/deskutils/lumina-pdf/Makefile
new file mode 100644
index 00000000..65bb03c5
--- /dev/null
+++ b/port-files/FreeBSD/deskutils/lumina-pdf/Makefile
@@ -0,0 +1,40 @@
+# Created by: Ken Moore <ken@pcbsd.org>
+# $FreeBSD$
+
+PORTNAME= lumina-pdf
+PORTVERSION= %%CHGVERSION%%
+PORTREVISION= %%CHGREVISION%%
+CATEGORIES= deskutils
+
+MAINTAINER= kmoore@FreeBSD.org
+COMMENT= PDF viewer from the Lumina Desktop
+
+LICENSE= BSD3CLAUSE
+
+LIB_DEPENDS= libpoppler-qt5.so:graphics/poppler-qt5
+
+CONFLICTS_INSTALL= lumina-1.2.*
+
+OPTIONS_DEFINE= I18N
+OPTIONS_DEFAULT= I18N
+I18N_DESC= Install localization files
+
+.include <bsd.port.options.mk>
+
+MAKE_JOBS_UNSAFE=yes
+
+USE_QT5= core gui widgets network svg multimedia \
+ buildtools_build x11extras concurrent printsupport
+USES= qmake
+USE_GITHUB= yes
+GH_ACCOUNT= trueos
+GH_PROJECT= lumina
+GH_TAGNAME= %%GHTAG%%
+WRKSRC_SUBDIR= src-qt5/desktop-utils/${PORTNAME}
+
+.if${PORT_OPTIONS:MI18N}
+USE_QT5+= linguist_build
+QMAKE_ARGS+=CONFIG+=WITH_I18N
+.endif
+
+.include <bsd.port.mk>
bgstack15