summaryrefslogtreecommitdiff
path: root/graphics/djview4
AgeCommit message (Collapse)AuthorFilesLines
2016-05-04Update to 4.10.6ryoon2-8/+7
Changelog: * high dpi display support
2016-03-05Bump PKGREVISION for security/openssl ABI bump.jperkin1-1/+2
2016-01-31Update to 4.10.5ryoon9-211/+53
Changelog: NEW IN VERSION 4.10 ------------------- - Bug fixes: layout, usability, preferences, locale selection - Works with both Qt4 and Qt5 - Build uses automake/qmake hybrid (instead of autoconf/qmake). - Layout annotations are honored in multipage mode - Experimental OpenGL rendering - Slideshow mode NEW IN VERSION 4.9 ------------------ - Added language selection in preference. - Added option to override printing and saving restrictions. - Automatic reloading of djvu documents when the file is changed. - New chinese translations. - Improved network code (needs Qt>=4.4.) - Remember the last visited position for the last 50 documents.
2015-11-03Add SHA512 digests for distfiles for graphics categoryagc1-1/+2
Problems found with existing digests: Package fotoxx distfile fotoxx-14.03.1.tar.gz ac2033f87de2c23941261f7c50160cddf872c110 [recorded] 118e98a8cc0414676b3c4d37b8df407c28a1407c [calculated] Package ploticus-examples distfile ploticus-2.00/plnode200.tar.gz 34274a03d0c41fae5690633663e3d4114b9d7a6d [recorded] da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated] Problems found locating distfiles: Package AfterShotPro: missing distfile AfterShotPro-1.1.0.30/AfterShotPro_i386.deb Package pgraf: missing distfile pgraf-20010131.tar.gz Package qvplay: missing distfile qvplay-0.95.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-04-25Recursive revbump following MesaLib update, categories g through n.tnn1-2/+2
2014-04-04Stop treating FreeBSD 10 like FreeBSD 1.asau3-1/+101
2014-02-12Recursive PKGREVISION bump for OpenSSL API version bump.tron1-2/+2
2013-06-06Bump PKGREVISION for libXft changes for NetBSD native X support onwiz1-2/+2
NetBSD 6, requested by tron.
2013-06-04Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:tron1-2/+2
Recursively bump package revisions again after the "freetype2" and "fontconfig" handling was fixed.
2013-06-03Bump freetype2 and fontconfig dependencies to current pkgsrc versions,wiz1-2/+2
to address issues with NetBSD-6(and earlier)'s fontconfig not being new enough for pango. While doing that, also bump freetype2 dependency to current pkgsrc version. Suggested by tron in PR 47882
2013-02-16Recursive bump for png-1.6.wiz1-2/+2
2013-02-06PKGREVISION bumps for the security/openssl 1.0.1d update.jperkin1-2/+2
2013-01-26Revbump after graphics/jpeg and textproc/icuadam1-2/+2
2012-10-08Revbump after updating graphics/pangoadam1-2/+2
2012-10-06Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-10-02Mass recursive bump after the dependence fix of the "cairo" packagetron1-2/+2
requested by Thomas Klausner.
2012-09-15recursive bump from libffi shlib major bumpobache1-2/+2
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
2012-09-07Revbump after updating graphics/cairoadam1-2/+2
2012-03-03Recursive bump for pcre-8.30* (shlib major change)wiz1-2/+2
2012-02-29Replace hardcoded /usr/local patch with ${LOCALBASE}.shattered1-2/+8
Avoids crash in dirname (pool=0xbfbfcc6c, fname=0x0) at nsdejavu.c:531
2012-02-16Fix PR pkg/45884ryoon2-1/+42
Function swap had been conflicted with Qt 4.8.
2012-02-06Revbump forwiz1-2/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2012-01-26Reset maintainer, domain doesn't existjoerg1-2/+2
2012-01-13Recursive bump from audio/libaudiofile, x11/qt4-libs and x11/qt4-tools ABI bump.obache1-2/+2
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd1-1/+2
2011-10-27Update to 4.8ryoon4-22/+22
Changelog: NEW IN VERSION 4.6 -------------------- - Show total page number in page combo and page info box. - Decode percent encoding in annotation and outline hyperlinks. - Properly handle non-ascii filenames in export and save dialogs. - Subtle changes to PgUp/PgDn/Home/End/Space/Backspace view changes. - Fixed suffix management in export/save/print dialogs. NEW IN VERSION 4.7 -------------------- - Fix for crash on quick PgUp PgDn sequences. - Fix scrollbars in continuous mode. - Fix plugin for some webkit based browsers. NEW IN VERSION 4.8 -------------------- - Added option to invert luminance. - Added shortcut ctrl+g to go to the page combo. - Fixed export issues under win32. - Mouse wheel can be configured to control the zoom. - Animated page movements.
2011-04-22recursive bump from gettext-lib shlib bump.obache1-2/+2
2011-02-26Bump PKGREVISION due to update of graphics/djvulibre-lib.ryoon1-2/+2
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz1-2/+2
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-11-15PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnomeabs1-2/+2
2010-09-14Bump dependency on pixman to 0.18.4 because cairo-1.10 needs thatwiz1-1/+2
version, and bump all depends. Per discussion on pkgsrc-changes.
2010-08-15Update djview4 to 4.5.obache5-21/+47
Based on PR#43712 from Ryo ONODERA. NEW IN VERSION 4.3 ------------------ - Undo/Redo - New translations (german,czech) - Fixed double free bug in plugin mode. NEW IN VERSION 4.4 -------------------- - Full session management under X11. - Added advanced feature check box. - Added advanced command to copy urls, outline, etc. - New translation (russian) - History in the find dialog. - Option to display hidden text in status bar. - Option to display the first page alone in side-by-side mode. - Option to display side-by-side in right-to-left mode. - Drag'n drop files into the viewer. - Support for Lizardtech's plugin option -showposition. NEW IN VERSION 4.5 -------------------- - Fixed priority of annotation options. - Fixed plugin for recent versions of gcc. - Added showposition in advanced option copyUrl. - New advanced mode to display hidden text. - Lens display annotations and hidden text. - Nsdejavu can use the XEmbed protocol when available. - Plugin is scriptable from JavaScript.
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz1-2/+2
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz1-2/+2
2009-08-26bump revision because of graphics/jpeg updatesno1-1/+2
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-2/+1
2009-06-14Remove @dirrm entries from PLISTsjoerg1-3/+1
2008-06-20Add DESTDIR support.joerg1-1/+3
2008-06-09Need pkg-config to build.obache1-1/+2
Noticed by Hasso Tepper in PR 38917.
2007-11-22import djview4-4.2.2, a djvu file viewer, from Paulo Matias per pkgsrc-wipdrochner6-0/+78