Skip to content

Commit

Permalink
Update to zathura-0.2.1
Browse files Browse the repository at this point in the history
Changes since 0.0.8.4:

    Syntex backwards synchronisation
    Fix request-page-setup
    Fix window adustment
    Better GTK3 integration
    Added first-page-colum setting
    Added recolor-keephue setting
    Updated translations

    New languages
    Better print support
    Improve document links
    Render last-viewed pages with a higher priority
    Export images and attachments
    Open multiple documents
    Plugin manager
    Several memory leaks and small bugs

    Add 'open-first-page' setting
    Free invisible pages after specific time
    Set log level via command line
    Update GTK3 support
    Completion for :write command
    Simplified plugin loading
    Allow counter-clockwise rotation
    Changeable page-padding
    Introduced girara version check
    Detect sqlite automatically
    Update window title

    Macro to register plugins
    Fix issues with the display of the current page number
    Ability to scroll to the full left or full right border
    Reimplement the render thread with GThreadPool
    Use the correct color to highlight results
    Support to use both database backends
    Additional notifications on errors
    Option to hide hidden directories
    Do not overwrite existing files with :write
    Fix flicker in text selection
    Resolved several memory leaks
    Updated Makefile

    Complete rewrite of zathura
    Uses the girara interface library
    Plugin system for different document types
    Better configuration
    Quickmarks
    and much more

    Ignoring MOD5 which is used on some keyboards
    Fix scroll_wrap (#52)
    Don't invert y coordinates (#42)
    Certain memory leaks and other small issues
  • Loading branch information
zul_ committed Nov 11, 2012
1 parent ed6e89a commit 4756546
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 23 deletions.
11 changes: 5 additions & 6 deletions zathura/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# $NetBSD$
#

DISTNAME= zathura-0.0.8.4
DISTNAME= zathura-0.2.1
CATEGORIES= print
MASTER_SITES= http://pwmt.org/download/
MASTER_SITES= http://pwmt.org/projects/zathura/download/

MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://pwmt.org/projects/zathura/
Expand All @@ -12,11 +12,10 @@ COMMENT= PDF viewer with vi-like keybindings

USE_TOOLS+= pkg-config gettext gmake groff
USE_LIBTOOL= yes
DEPENDS+= py26-docutils-[0-9]*:../../textproc/py-docutils
DEPENDS+= py27-docutils-[0-9]*:../../textproc/py-docutils

.include "../../print/poppler-glib/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../x11/gtk2/buildlink3.mk"
.include "../../graphics/cairo/buildlink3.mk"
.include "../../x11/gtk2/buildlink3.mk"
.include "../../wip/girara/buildlink3.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../mk/bsd.pkg.mk"
22 changes: 22 additions & 0 deletions zathura/PLIST
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
@comment $NetBSD$
bin/zathura
include/zathura/document.h
include/zathura/links.h
include/zathura/macros.h
include/zathura/page.h
include/zathura/plugin-api.h
include/zathura/types.h
include/zathura/version.h
lib/pkgconfig/zathura.pc
man/man1/zathura.1
man/man5/zathurarc.5
share/applications/zathura.desktop
share/locale/cs/LC_MESSAGES/zathura.mo
share/locale/de/LC_MESSAGES/zathura.mo
share/locale/eo/LC_MESSAGES/zathura.mo
share/locale/es/LC_MESSAGES/zathura.mo
share/locale/es_CL/LC_MESSAGES/zathura.mo
share/locale/et/LC_MESSAGES/zathura.mo
share/locale/fr/LC_MESSAGES/zathura.mo
share/locale/it/LC_MESSAGES/zathura.mo
share/locale/pl/LC_MESSAGES/zathura.mo
share/locale/ru/LC_MESSAGES/zathura.mo
share/locale/ta_IN/LC_MESSAGES/zathura.mo
share/locale/tr/LC_MESSAGES/zathura.mo
share/locale/uk_UA/LC_MESSAGES/zathura.mo
8 changes: 4 additions & 4 deletions zathura/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD$

SHA1 (zathura-0.0.8.4.tar.gz) = 5c0f02181baa555ff2e7ed0f4c68ca2a2a2a5893
RMD160 (zathura-0.0.8.4.tar.gz) = 1d4161a0cc5668a18dee515204d6152ce87259f7
Size (zathura-0.0.8.4.tar.gz) = 37542 bytes
SHA1 (patch-config.mk.c) = 38ef56b1ae9e783941faa485a4a5d6dab648d102
SHA1 (zathura-0.2.1.tar.gz) = 6d508f8c0e8a4d8e21b7bae815a83abae402e828
RMD160 (zathura-0.2.1.tar.gz) = 3b522373d4aec63c20f44ac12645a154f32b29bf
Size (zathura-0.2.1.tar.gz) = 95179 bytes
SHA1 (patch-aa) = e83ebe02233395001cc1e5417ae0098b0fa43f3c
17 changes: 17 additions & 0 deletions zathura/patches/patch-aa
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
$NetBSD$

Adapt to pkgsrc prerequisite

--- config.mk.orig 2012-11-10 11:29:08.000000000 +0000
+++ config.mk 2012-11-10 11:29:41.000000000 +0000
@@ -24,8 +24,8 @@
WITH_SQLITE ?= $(shell (pkg-config --atleast-version=3.5.9 sqlite3 && echo 1) || echo 0)

# paths
-PREFIX ?= /usr
-MANPREFIX ?= ${PREFIX}/share/man
+PREFIX ?= ${PREFIX}
+MANPREFIX ?= ${PREFIX}/man
DESKTOPPREFIX ?= ${PREFIX}/share/applications
LIBDIR ?= ${PREFIX}/lib
INCLUDEDIR ?= ${PREFIX}/include
13 changes: 0 additions & 13 deletions zathura/patches/patch-config.mk.c

This file was deleted.

0 comments on commit 4756546

Please sign in to comment.