forked from Lainports/freebsd-ports
Release 21.02.0:
core:
* GfxCal*ColorSpace: introduce Bradford transform for chromatic adaptation
* Fix memory leak if saving the file fails
* Internal code improvements
* Fix various issues handling broken files
* Make checkedAdd work for long long in MSVC
qt5:
* Properly export NewSignatureData class
* Fix regression in QIODeviceOutStream + MSVC
qt6:
* Properly export NewSignatureData class
* Fix regression in QIODeviceOutStream + MSVC
utils:
* pdftohtml: Fix error() parameter type
PR: 253183
Exp-run by: antoine
33 lines
713 B
Makefile
33 lines
713 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pdfpc
|
|
DISTVERSION= 4.5.0
|
|
CATEGORIES= graphics
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 2
|
|
|
|
MAINTAINER= bapt@FreeBSD.org
|
|
COMMENT= Keynote-like multi-monitor presentation viewer
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
BUILD_DEPENDS= valac:lang/vala \
|
|
${LOCALBASE}/lib/libmarkdown.a:textproc/discount
|
|
LIB_DEPENDS= libgee-0.8.so:devel/libgee \
|
|
libpoppler-glib.so:graphics/poppler-glib \
|
|
libwebkit2gtk-4.0.so:www/webkit2-gtk3
|
|
|
|
USE_GITHUB= yes
|
|
|
|
USES= cmake compiler:c11 gnome pkgconfig
|
|
USE_GNOME= gtk30
|
|
USE_GSTREAMER1= yes
|
|
|
|
CMAKE_ARGS= -DMANDIR:STRING="man/"
|
|
|
|
post-install:
|
|
@${MV} ${STAGEDIR}${PREFIX}/etc/pdfpcrc \
|
|
${STAGEDIR}${PREFIX}/etc/pdfpcrc.sample
|
|
|
|
.include <bsd.port.mk>
|