diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
commit | 65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch) | |
tree | fbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /core/texinfo | |
parent | d53c44f055929b18d7d1b25f8367ee5836c435fc (diff) |
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'core/texinfo')
-rw-r--r-- | core/texinfo/PKGBUILD | 15 | ||||
-rw-r--r-- | core/texinfo/texinfo-5.2-C-n-fix.patch | 10 |
2 files changed, 21 insertions, 4 deletions
diff --git a/core/texinfo/PKGBUILD b/core/texinfo/PKGBUILD index db46eecf8..24bacfcd4 100644 --- a/core/texinfo/PKGBUILD +++ b/core/texinfo/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 195842 2013-10-02 00:09:47Z allan $ +# $Id: PKGBUILD 199326 2013-11-11 03:44:43Z allan $ # Maintainer: Allan McRae <allan@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=texinfo pkgver=5.2 -pkgrel=1 +pkgrel=2 pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source file" arch=('i686' 'x86_64') url="http://www.gnu.org/software/texinfo/" @@ -12,9 +12,16 @@ license=('GPL3') groups=('base' 'base-devel') depends=('ncurses' 'findutils' 'gzip' 'perl' 'sh') install=texinfo.install -source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}) +source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig} + texinfo-5.2-C-n-fix.patch) md5sums=('cb489df8a7ee9d10a236197aefdb32c5' - 'SKIP') + 'SKIP' + '89724bac1ecbd1a57b1ea81e87f96f44') + +prepare() { + cd ${srcdir}/${pkgname}-${pkgver} + patch -p0 -i ${srcdir}/texinfo-5.2-C-n-fix.patch +} build() { cd ${srcdir}/${pkgname}-${pkgver} diff --git a/core/texinfo/texinfo-5.2-C-n-fix.patch b/core/texinfo/texinfo-5.2-C-n-fix.patch new file mode 100644 index 000000000..adf545126 --- /dev/null +++ b/core/texinfo/texinfo-5.2-C-n-fix.patch @@ -0,0 +1,10 @@ +--- info/infomap.c (revision 5386) ++++ info/infomap.c (working copy) +@@ -297,6 +297,7 @@ + CONTROL('f'), NUL, A_info_forward_char, + CONTROL('h'), NUL, A_info_get_help_window, + CONTROL('l'), NUL, A_info_redraw_display, ++ CONTROL('n'), NUL, A_info_next_line, + CONTROL('p'), NUL, A_info_prev_line, + CONTROL('r'), NUL, A_isearch_backward, + CONTROL('s'), NUL, A_isearch_forward, |