aboutsummaryrefslogtreecommitdiff
path: root/port-files/FreeBSD/deskutils/lumina-pdf/Makefile
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2017-08-17 16:11:36 +0000
committerWeblate <noreply@weblate.org>2017-08-17 16:11:36 +0000
commit35915a6a5a72ea5c45af7a787dcad69fee31218b (patch)
tree250dc618a5f8e12f041a1a2166269e3c8c3c4bfa /port-files/FreeBSD/deskutils/lumina-pdf/Makefile
parentTranslated using Weblate (French) (diff)
parentMerge remote-tracking branch 'origin/master' (diff)
downloadlumina-35915a6a5a72ea5c45af7a787dcad69fee31218b.tar.gz
lumina-35915a6a5a72ea5c45af7a787dcad69fee31218b.tar.bz2
lumina-35915a6a5a72ea5c45af7a787dcad69fee31218b.zip
Merge branch 'master' of github.com:trueos/lumina
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