summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2012-03-24 23:56:41 +0000
committerMichael Weber <xmw@gentoo.org>2012-03-24 23:56:41 +0000
commitd310ec65f1d909239af2e21653ad36b2d26b6660 (patch)
tree0668af9601f9e28ed5aa11b179a496744f304c89 /app-text/mupdf
parentMove over Anarchy's changes from the overlay, fixes bug 408613 and bug 408799 (diff)
downloadgentoo-2-d310ec65f1d909239af2e21653ad36b2d26b6660.tar.gz
gentoo-2-d310ec65f1d909239af2e21653ad36b2d26b6660.tar.bz2
gentoo-2-d310ec65f1d909239af2e21653ad36b2d26b6660.zip
Update live build.
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'app-text/mupdf')
-rw-r--r--app-text/mupdf/ChangeLog6
-rw-r--r--app-text/mupdf/files/mupdf-9999-zoom-1.patch18
-rw-r--r--app-text/mupdf/mupdf-9999.ebuild5
3 files changed, 25 insertions, 4 deletions
diff --git a/app-text/mupdf/ChangeLog b/app-text/mupdf/ChangeLog
index 627628410833..214282c66369 100644
--- a/app-text/mupdf/ChangeLog
+++ b/app-text/mupdf/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/mupdf
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/ChangeLog,v 1.28 2012/03/05 04:10:47 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/ChangeLog,v 1.29 2012/03/24 23:56:40 xmw Exp $
+
+ 24 Mar 2012; Michael Weber <xmw@gentoo.org> mupdf-9999.ebuild,
+ +files/mupdf-9999-zoom-1.patch:
+ Update live build.
05 Mar 2012; Michael Weber <xmw@gentoo.org> mupdf-9999.ebuild:
Include new documentation.
diff --git a/app-text/mupdf/files/mupdf-9999-zoom-1.patch b/app-text/mupdf/files/mupdf-9999-zoom-1.patch
new file mode 100644
index 000000000000..8f976b9d5142
--- /dev/null
+++ b/app-text/mupdf/files/mupdf-9999-zoom-1.patch
@@ -0,0 +1,18 @@
+--- mupdf-9999/apps/pdfapp.c
++++ mupdf-9999/apps/pdfapp.c
+@@ -858,6 +858,7 @@
+ break;
+
+ case 'b':
++ case '\b': //backspace
+ panto = DONT_PAN;
+ if (app->numberlen > 0)
+ app->pageno -= atoi(app->number);
+@@ -866,6 +867,7 @@
+ break;
+
+ case ' ':
++ case 'F':
+ panto = DONT_PAN;
+ if (app->numberlen > 0)
+ app->pageno += atoi(app->number);
diff --git a/app-text/mupdf/mupdf-9999.ebuild b/app-text/mupdf/mupdf-9999.ebuild
index 0a1e201707ad..d3a8af077e63 100644
--- a/app-text/mupdf/mupdf-9999.ebuild
+++ b/app-text/mupdf/mupdf-9999.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-9999.ebuild,v 1.9 2012/03/05 04:10:47 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-9999.ebuild,v 1.10 2012/03/24 23:56:40 xmw Exp $
EAPI=4
@@ -30,8 +30,7 @@ src_prepare() {
epatch "${FILESDIR}"/${PN}-0.8.165-buildsystem.patch
if ! use vanilla ; then
- epatch "${FILESDIR}"/${PN}-9999-zoom.patch
- epatch "${FILESDIR}"/${PN}-9999-scroll.patch
+ epatch "${FILESDIR}"/${PN}-9999-zoom-1.patch
fi
}