mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
a831c679c4
Release 20.11.0: core: * More work on rendering of standalone Annot Widgets. Issue #806 * Fix crashes in embedded file handling on broken files. Issue #967 * Fix uninitialized memory read on broken files * Save a bit of memory in Dict data cpp: * Fix crashes in embedded file handling on broken files. Issue #966 utils: * pdftohtml: HTML and XML output includes font opacity. qt5: * Rename ArthurOutputDev to QPainterOutputDev build system: * Fix linker error when gtk is not in a default location * Add some checks for gtk-doc support * Reorganize GObject introspection config * Enable CMAKE_LINK_DEPENDS_NO_SHARED PR: 250786 Exp-run by: antoine
37 lines
849 B
Makefile
37 lines
849 B
Makefile
# Created by: Kurt Kanzenbach <kurt@kmk-computers.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= katarakt
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= kurt@kmk-computers.de
|
|
COMMENT= Simple PDF viewer uses as much available screen space as possible
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= a2x:textproc/asciidoc
|
|
LIB_DEPENDS= libpoppler-qt5.so:graphics/poppler-qt5
|
|
|
|
USES= compiler:c++11-lang gl pkgconfig qmake qt:5
|
|
USE_QT= buildtools_build core gui xml dbus network widgets
|
|
USE_GL= gl
|
|
|
|
USE_GITLAB= yes
|
|
GL_SITE= https://gitlab.cs.fau.de
|
|
GL_ACCOUNT= Qui_Sum
|
|
GL_COMMIT= 99735bc0b15b57d689b6c982d43b85ed1b40ef45
|
|
|
|
PLIST_FILES= bin/katarakt \
|
|
man/man1/katarakt.1.gz
|
|
|
|
post-build:
|
|
cd ${WRKSRC} && ${MAKE} doc
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/katarakt.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|