View | Details | Raw Unified | Return to bug 245150
Collapse All | Expand All

(-)b/graphics/poppler-glib/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# Created by: Michael Johnson <ahze@FreeBSD.org>
1
# Created by: Michael Johnson <ahze@FreeBSD.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTREVISION=	2
4
PORTREVISION=	0
5
5
6
COMMENT=	GLib bindings to poppler
6
COMMENT=	GLib bindings to poppler
7
7
(-)b/graphics/poppler-qt5/pkg-plist (-1 / +1 lines)
Lines 9-13 include/poppler/qt5/poppler-qt5.h Link Here
9
include/poppler/qt5/poppler-version.h
9
include/poppler/qt5/poppler-version.h
10
lib/libpoppler-qt5.so
10
lib/libpoppler-qt5.so
11
lib/libpoppler-qt5.so.1
11
lib/libpoppler-qt5.so.1
12
lib/libpoppler-qt5.so.1.22.0
12
lib/libpoppler-qt5.so.1.23.0
13
libdata/pkgconfig/poppler-qt5.pc
13
libdata/pkgconfig/poppler-qt5.pc
(-)b/graphics/poppler/Makefile (-3 / +2 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	poppler
4
PORTNAME=	poppler
5
DISTVERSION=	0.86.1
5
DISTVERSION=	0.87.0
6
PORTREVISION?=	1
7
CATEGORIES=	graphics print
6
CATEGORIES=	graphics print
8
MASTER_SITES=	https://poppler.freedesktop.org/
7
MASTER_SITES=	https://poppler.freedesktop.org/
9
8
Lines 48-54 CMAKE_OFF+= ${_POPPLER_SLAVES:N${_SLAVE_PORT}:tu:S/^/ENABLE_/} Link Here
48
PORTSCOUT=	limitw:1,even
47
PORTSCOUT=	limitw:1,even
49
USES+=		iconv
48
USES+=		iconv
50
CMAKE_ON+=	ENABLE_CPP
49
CMAKE_ON+=	ENABLE_CPP
51
PLIST_SUB+=	SHLIB_VER=97
50
PLIST_SUB+=	SHLIB_VER=98
52
51
53
OPTIONS_DEFINE=		CURL OPENJPEG
52
OPTIONS_DEFINE=		CURL OPENJPEG
54
OPTIONS_DEFAULT=	OPENJPEG
53
OPTIONS_DEFAULT=	OPENJPEG
(-)b/graphics/poppler/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1584260973
1
TIMESTAMP = 1585408580
2
SHA256 (poppler-0.86.1.tar.xz) = af630a277c8e194c31339c5446241834aed6ed3d4b4dc7080311e51c66257f6c
2
SHA256 (poppler-0.87.0.tar.xz) = 6f602b9c24c2d05780be93e7306201012e41459f289b8279a27a79431ad4150e
3
SIZE (poppler-0.86.1.tar.xz) = 1593856
3
SIZE (poppler-0.87.0.tar.xz) = 1595088
(-)a/graphics/poppler/files/patch-glib_poppler-action.cc (-51 lines)
Removed Link Here
1
--- glib/poppler-action.cc.orig	2020-03-01 19:52:52 UTC
2
+++ glib/poppler-action.cc
3
@@ -627,39 +627,39 @@ _poppler_action_new (PopplerDocument *document,
4
 	switch (link->getKind ()) {
5
 	case actionGoTo:
6
 		action->type = POPPLER_ACTION_GOTO_DEST;
7
-		build_goto_dest (document, action, dynamic_cast <const LinkGoTo *> (link));
8
+		build_goto_dest (document, action, static_cast <const LinkGoTo *> (link));
9
 		break;
10
 	case actionGoToR:
11
 		action->type = POPPLER_ACTION_GOTO_REMOTE;
12
-		build_goto_remote (action, dynamic_cast <const LinkGoToR *> (link));
13
+		build_goto_remote (action, static_cast <const LinkGoToR *> (link));
14
 		break;
15
 	case actionLaunch:
16
 		action->type = POPPLER_ACTION_LAUNCH;
17
-		build_launch (action, dynamic_cast <const LinkLaunch *> (link));
18
+		build_launch (action, static_cast <const LinkLaunch *> (link));
19
 		break;
20
 	case actionURI:
21
 		action->type = POPPLER_ACTION_URI;
22
-		build_uri (action, dynamic_cast <const LinkURI *> (link));
23
+		build_uri (action, static_cast <const LinkURI *> (link));
24
 		break;
25
 	case actionNamed:
26
 		action->type = POPPLER_ACTION_NAMED;
27
-		build_named (action, dynamic_cast <const LinkNamed *> (link));
28
+		build_named (action, static_cast <const LinkNamed *> (link));
29
 		break;
30
 	case actionMovie:
31
 		action->type = POPPLER_ACTION_MOVIE;
32
-		build_movie (document, action, dynamic_cast<const LinkMovie*> (link));
33
+		build_movie (document, action, static_cast<const LinkMovie*> (link));
34
 		break;
35
 	case actionRendition:
36
 		action->type = POPPLER_ACTION_RENDITION;
37
-		build_rendition (action, dynamic_cast<const LinkRendition*> (link));
38
+		build_rendition (action, static_cast<const LinkRendition*> (link));
39
 		break;
40
 	case actionOCGState:
41
 		action->type = POPPLER_ACTION_OCG_STATE;
42
-		build_ocg_state (document, action, dynamic_cast<const LinkOCGState*> (link));
43
+		build_ocg_state (document, action, static_cast<const LinkOCGState*> (link));
44
 		break;
45
 	case actionJavaScript:
46
 		action->type = POPPLER_ACTION_JAVASCRIPT;
47
-		build_javascript (action, dynamic_cast<const LinkJavaScript*> (link));
48
+		build_javascript (action, static_cast<const LinkJavaScript*> (link));
49
 		break;
50
 	case actionUnknown:
51
 	default:
(-)a/graphics/poppler/files/patch-utils_HtmlOutputDev.cc (-11 lines)
Removed Link Here
1
--- utils/HtmlOutputDev.cc.orig	2020-03-01 19:52:52 UTC
2
+++ utils/HtmlOutputDev.cc
3
@@ -1838,7 +1838,7 @@ int HtmlOutputDev::getOutlinePageNum(OutlineItem *item
4
     if (!action || action->getKind() != actionGoTo)
5
         return pagenum;
6
 
7
-    link = dynamic_cast<const LinkGoTo*>(action);
8
+    link = static_cast<const LinkGoTo*>(action);
9
 
10
     if (!link || !link->isOk())
11
         return pagenum;

Return to bug 245150