mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
753388101e
From Changelog at https://poppler.freedesktop.org/releases.html : Release 0.76.1: core: * Make the mul tables be calculated at compile time with constexpr. * splash: Fix compile with SPLASH_CMYK enabled * Some typo fixing in error messages qt5: * Fix regression in annotation handling build system: * Fix some typos in build system output and comments Release 0.76.0: core: * Fix regression on case-insensitive search. Issue #743 * Remove GooList, use std::vector instead * Fix radiobutton reporting wrong state. Issue #159 * Handle UTF16-LE strings * Don't error out if there's no DA in FreeText annotation * cairo: Compute correct coverage values for box filter. * cairo: Constrain number of cycles in rescale filter. * Read more fields from ViewerPreferences * Introduce and use Ref::INVALID * Fix crashes in broken files * Fix mismatched free/delete * Add missing include guards utils: * pdftohtml: Properly initialize HtmlOutputDev::page to avoid SIGSEGV upon error exit. Issue #742 All the required patches have been obtained via gentoo. PR: 237846 Exp-run by: antoine Approved by: kwm
41 lines
901 B
Makefile
41 lines
901 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= electrix
|
|
PORTVERSION= 0.2.0
|
|
PORTREVISION= 12
|
|
CATEGORIES= graphics print
|
|
MASTER_SITES= SF/${PORTNAME:tl}/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Application to view PDF files
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= desktop-file-utils pkgconfig python:2.7 tar:bzip2 waf
|
|
USE_GNOME= gtk20 glib20 intltool intlhack
|
|
|
|
MAKE_ENV= DESTDIR="${STAGEDIR}" \
|
|
JOBS="${MAKE_JOBS_NUMBER}" \
|
|
LINKFLAGS="${LDFLAGS}"
|
|
|
|
OPTIONS_DEFINE= DBUS NLS PDF PS
|
|
OPTIONS_DEFAULT= DBUS PDF
|
|
OPTIONS_SUB= yes
|
|
|
|
DBUS_LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib
|
|
DBUS_CONFIGURE_OFF= --disable-dbus
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_OFF= --disable-nls
|
|
|
|
PDF_LIB_DEPENDS= libpoppler-glib.so:graphics/poppler-glib
|
|
PDF_CONFIGURE_OFF= --disable-pdf
|
|
|
|
PS_LIB_DEPENDS= libspectre.so:print/libspectre
|
|
PS_CONFIGURE_OFF= --disable-ps
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/electrix
|
|
|
|
.include <bsd.port.mk>
|