mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
003b9f3955
Changelog (https://github.com/vslavik/diff-pdf/releases): * Added new useful options: --skip-identical only outputs pages with actual differences --channel-tolerance makes it easy to ignore tiny differences --mark-differences adds visual markers to the margin to highlight where small changes are * Fixes some bugs PR: 245133 Submitted by: Zsolt Udvari <uzsolt@uzsolt.hu> (maintainer)
32 lines
666 B
Makefile
32 lines
666 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= diff-pdf
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.4.1
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= uzsolt@uzsolt.hu
|
|
COMMENT= Tool for visually comparing two PDFs
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libpoppler.so:graphics/poppler \
|
|
libpoppler-glib.so:graphics/poppler-glib
|
|
|
|
USES= autoreconf compiler:c++11-lang gnome pkgconfig
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= vslavik
|
|
GH_TAGNAME= 6741ab9
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-wx-config=${WX_CONFIG}
|
|
USE_GNOME= cairo glib20
|
|
USE_WX= 2.8+
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} '/AM_PATH_WXCONFIG/ s,3.0.0,2.8.0,' ${WRKSRC}/configure.ac
|
|
|
|
.include <bsd.port.mk>
|