head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.54 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.52 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.50 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.48 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.46 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.44 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.42 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.40 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.38 pkgsrc-2008Q2-base:1.5 pkgsrc-2008Q1:1.5.0.36 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.34 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.5.0.32 pkgsrc-2007Q3-base:1.5 pkgsrc-2007Q2:1.5.0.30 pkgsrc-2007Q2-base:1.5 pkgsrc-2007Q1:1.5.0.28 pkgsrc-2007Q1-base:1.5 pkgsrc-2006Q4:1.5.0.26 pkgsrc-2006Q4-base:1.5 pkgsrc-2006Q3:1.5.0.24 pkgsrc-2006Q3-base:1.5 pkgsrc-2006Q2:1.5.0.22 pkgsrc-2006Q2-base:1.5 pkgsrc-2006Q1:1.5.0.20 pkgsrc-2006Q1-base:1.5 pkgsrc-2005Q4:1.5.0.18 pkgsrc-2005Q4-base:1.5 pkgsrc-2005Q3:1.5.0.16 pkgsrc-2005Q3-base:1.5 pkgsrc-2005Q2:1.5.0.14 pkgsrc-2005Q2-base:1.5 pkgsrc-2005Q1:1.5.0.12 pkgsrc-2005Q1-base:1.5 pkgsrc-2004Q4:1.5.0.10 pkgsrc-2004Q4-base:1.5 pkgsrc-2004Q3:1.5.0.8 pkgsrc-2004Q3-base:1.5 pkgsrc-2004Q2:1.5.0.6 pkgsrc-2004Q2-base:1.5 pkgsrc-2004Q1:1.5.0.4 pkgsrc-2004Q1-base:1.5 pkgsrc-2003Q4:1.5.0.2 pkgsrc-2003Q4-base:1.5 netbsd-1-6-1:1.4.0.6 netbsd-1-6-1-base:1.4 netbsd-1-6:1.4.0.8 netbsd-1-6-RELEASE-base:1.4 pkgviews:1.4.0.4 pkgviews-base:1.4 buildlink2:1.4.0.2 buildlink2-base:1.4 netbsd-1-5-PATCH003:1.4 netbsd-1-5-PATCH001:1.2; locks; strict; comment @# @; 1.5 date 2003.08.02.21.18.09; author seb; state dead; branches; next 1.4; 1.4 date 2002.02.18.15.14.32; author seb; state Exp; branches; next 1.3; 1.3 date 2002.01.03.17.09.47; author wiz; state dead; branches; next 1.2; 1.2 date 2001.04.22.23.16.09; author jtb; state Exp; branches; next 1.1; 1.1 date 2001.04.22.22.58.47; author jtb; state Exp; branches; next ; desc @@ 1.5 log @Convert to USE_NEW_TEXINFO. Add patch file to add an Info directory entry to liboctave.texi. Remove now unnecessary patch files and trim one of its "info" bits. @ text @$NetBSD: patch-am,v 1.4 2002/02/18 15:14:32 seb Exp $ --- readline/doc/Makefile.in.orig Sun Feb 17 16:26:41 2002 +++ readline/doc/Makefile.in @@@@ -41,7 +41,6 @@@@ BUILD_DIR = @@BUILD_DIR@@ TEXINPUTDIR = $(srcdir) -MAKEINFO = LANGUAGE= makeinfo TEXI2DVI = $(srcdir)/texi2dvi TEXI2HTML = $(srcdir)/texi2html QUIETPS = #set this to -q to shut up dvips @ 1.4 log @Introduce new framework for handling info files generation and installation. Summary of changes: - removal of USE_GTEXINFO - addition of mk/texinfo.mk - inclusion of this file in package Makefiles requiring it - `install-info' substituted by `${INSTALL_INFO}' in PLISTs - tuning of mk/bsd.pkg.mk: removal of USE_GTEXINFO INSTALL_INFO added to PLIST_SUBST `${INSTALL_INFO}' replace `install-info' in target rules print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info' - a couple of new patch files added for a handful of packages - setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it - devel/cssc marked requiring texinfo 4.0 - a couple of packages Makefiles were tuned with respect of INFO_FILES and makeinfo command usage See -newly added by this commit- section 10.24 of Packages.txt for further information. @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @Remove a bogus patch, drop a MASTER_SITE, and fix PLIST. @ text @d1 1 a1 1 $NetBSD: patch-am,v 1.2 2001/04/22 23:16:09 jtb Exp $ d3 10 a12 47 --- liboctave/oct-rl-edit.c.orig Mon Apr 23 00:07:12 2001 +++ liboctave/oct-rl-edit.c @@@@ -33,20 +33,20 @@@@ #include "oct-rl-edit.h" +extern int screenheight; + +extern int screenwidth; + int octave_rl_screen_height (void) { - int rows, cols; - rl_get_screen_size (&rows, &cols); - return rows; + return screenheight; } int octave_rl_screen_width (void) { - int rows, cols; - rl_get_screen_size (&rows, &cols); - return cols; + return screenwidth; } void @@@@ -93,7 +93,7 @@@@ { if (rl_undo_list) { - rl_free_undo_list (); + free_undo_list (); rl_undo_list = 0; } @@@@ -221,7 +221,7 @@@@ char ** octave_rl_completion_matches (const char *text, rl_completer_fcn_ptr f) { - return rl_completion_matches (text, f); + return completion_matches (text, f); } char @ 1.2 log @Bad patch. @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Remove "xstopx.f" and "dostop.c" from libcruft/misc. They've been deprecated and cause problems if left. Touch "parse.cc" and "parse.h" so that they won't get remade. (The configure script doesn't detect bison correctly anyway). Remove a duplicate entry from PLIST. Make it work with the readline currently in pkgsrc. @ text @d3 1 a3 1 --- liboctave/oct-rl-edit.c.orig Sun Apr 22 23:54:15 2001 d5 1 a5 1 @@@@ -33,36 +33,20 @@@@ d9 4 a12 8 -/* It would be nice if readline.h declared these, I think. */ - -extern int rl_blink_matching_paren; - -extern int screenheight; - -extern int screenwidth; - d16 4 a19 1 - return screenheight; d25 4 a28 1 - return screenwidth; d32 1 a32 8 -octave_set_rl_blink_matching_paren_flag (int val) -{ - rl_blink_matching_paren = val; -} - -int -octave_get_rl_blink_matching_paren_flag (void) +octave_rl_enable_paren_matching (int val) d34 10 a43 8 - return rl_blink_matching_paren; + rl_variable_bind ("blink-matching-paren", val ? "1" : "0"); } void @@@@ -95,7 +79,7 @@@@ void octave_rl_newline (void) d45 2 a46 2 - rl_newline (); + rl_newline (1, '\n'); d49 1 a49 19 void @@@@ -130,7 +114,7 @@@@ init file to take advantage of the conditional parsing feature based on rl_readline_name; */ - rl_re_read_init_file (); + rl_re_read_init_file (0, 0); } char * @@@@ -169,7 +153,7 @@@@ if (f && *f) rl_read_init_file (f); else - rl_re_read_init_file (); + rl_re_read_init_file (0, 0); } void @