a2ps-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS: a2ps/contrib texi2dvi4a2ps,1.1.1.1,1.1.1.1.2.1


From: Akim Demaille <address@hidden>
Subject: CVS: a2ps/contrib texi2dvi4a2ps,1.1.1.1,1.1.1.1.2.1
Date: Mon, 25 Mar 2002 12:09:47 -0500

Update of /cvsroot/a2ps/a2ps/contrib
In directory subversions:/tmp/cvs-serv10568/contrib

Modified Files:
      Tag: a2ps-4-1x
        texi2dvi4a2ps 
Log Message:
Gettext 0.11.1.
* lib/Makefile.am (noinst_HEADERS): Add gettext.h.
* lib/system.h: Use lib/gettext.h.
* src/Makefile.am, contrib/sample/Makefile.am: @LIBINTL@ instead
of @address@hidden


Index: texi2dvi4a2ps
===================================================================
RCS file: /cvsroot/a2ps/a2ps/contrib/texi2dvi4a2ps,v
retrieving revision 1.1.1.1
retrieving revision 1.1.1.1.2.1
diff -C2 -r1.1.1.1 -r1.1.1.1.2.1
*** texi2dvi4a2ps       4 Mar 2002 18:46:23 -0000       1.1.1.1
--- texi2dvi4a2ps       25 Mar 2002 17:09:15 -0000      1.1.1.1.2.1
***************
*** 3,7 ****
  # $Id$
  #
! # Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 99 Free Software Foundation, 
Inc.
  #
  # This program is free software; you can redistribute it and/or modify
--- 3,8 ----
  # $Id$
  #
! # Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 99, 2001, 02
! # Free Software Foundation, Inc.
  #
  # This program is free software; you can redistribute it and/or modify
***************
*** 30,42 ****
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
! version="texi2dvi (GNU Texinfo 4.0) $rcs_version
  
! Copyright (C) 1999 Free Software Foundation, Inc.
  There is NO warranty.  You may redistribute this software
  under the terms of the GNU General Public License.
  For more information about these matters, see the files named COPYING."
  
! usage="\
! Usage: $program [OPTION]... FILE...
  
  Run each Texinfo or LaTeX FILE through TeX in turn until all
--- 31,42 ----
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
! version="texi2dvi (GNU Texinfo 4.1) $rcs_version
  
! Copyright (C) 2002 Free Software Foundation, Inc.
  There is NO warranty.  You may redistribute this software
  under the terms of the GNU General Public License.
  For more information about these matters, see the files named COPYING."
  
! usage="Usage: $program [OPTION]... FILE...
  
  Run each Texinfo or LaTeX FILE through TeX in turn until all
***************
*** 49,64 ****
  
  Operation modes:
    -h, --help          display this help and exit successfully
!   -v, --version       display version information and exit successfully
!   -V, --verbose       report on what is done
    -q, --quiet         no output unless errors (implies --batch)
    -s, --silent        same as --quiet
!   -D, --debug         turn on shell debugging (set -x)
!   -b, --batch         no interaction
!   -c, --clean         remove all auxiliary files
!   -o, --output=FILE   leave output in FILE (implies --clean)
! 
! Only one FILE may be specified if \`--output' is used.
! 
  
  TeX tuning:
--- 49,62 ----
  
  Operation modes:
+   -b, --batch         no interaction
+   -c, --clean         remove all auxiliary files
+   -D, --debug         turn on shell debugging (set -x)
    -h, --help          display this help and exit successfully
!   -o, --output=OFILE  leave output in OFILE (implies --clean);
!                       Only one input FILE may be specified in this case
    -q, --quiet         no output unless errors (implies --batch)
    -s, --silent        same as --quiet
!   -v, --version       display version information and exit successfully
!   -V, --verbose       report on what is done
  
  TeX tuning:
***************
*** 76,80 ****
  
  Email bug reports to <address@hidden>,
! general questions and discussion to <address@hidden>."
  
  # Initialize variables for option overriding and otherwise.
--- 74,79 ----
  
  Email bug reports to <address@hidden>,
! general questions and discussion to <address@hidden>.
! Texinfo home page: http://www.gnu.org/software/texinfo/";
  
  # Initialize variables for option overriding and otherwise.
***************
*** 230,241 ****
    }
  }
! /address@hidden/,/address@hidden html/d
! /address@hidden/,/address@hidden ifhtml/d
! /address@hidden/,/address@hidden ifnottex/d
  /address@hidden/,/address@hidden ifinfo/{
    /address@hidden/p
    /address@hidden/,/address@hidden menu/p
!   d
  }
  EOF
  # Uncommenting is simple: Remove any leading address@hidden texi2dvi'.
--- 229,249 ----
    }
  }
! /address@hidden/,/address@hidden html/{
!   s/^/@c (texi2dvi)/
! }
! /address@hidden/,/address@hidden ifhtml/{
!   s/^/@c (texi2dvi)/
! }
! /address@hidden/,/address@hidden ifnottex/{
!   s/^/@c (texi2dvi)/
! }
  /address@hidden/,/address@hidden ifinfo/{
    /address@hidden/p
    /address@hidden/,/address@hidden menu/p
!   t
!   s/^/@c (texi2dvi)/
  }
+ s/address@hidden/@c address@hidden/
+ s/address@hidden ifnotinfo/@c address@hidden ifnotinfo/
  EOF
  # Uncommenting is simple: Remove any leading address@hidden texi2dvi'.
***************
*** 514,519 ****
      # to be `/'.
      $batch tex_args="\\${escape}nonstopmode\ \\${escape}input"
-     $verbose "Running $cmd ..."
      cmd="$tex $tex_args $filename_input"
      if $cmd >&5; then :; else
        echo "$0: $tex exited with bad status, quitting." >&2
--- 522,527 ----
      # to be `/'.
      $batch tex_args="\\${escape}nonstopmode\ \\${escape}input"
      cmd="$tex $tex_args $filename_input"
+     $verbose "Running $cmd ..."
      if $cmd >&5; then :; else
        echo "$0: $tex exited with bad status, quitting." >&2
***************
*** 578,582 ****
         dest=$oname
      else
!        dest=$orgi_pwd
      fi
      $verbose "Copying $oformat file from `pwd` to $dest"
--- 586,590 ----
         dest=$oname
      else
!        dest=$orig_pwd
      fi
      $verbose "Copying $oformat file from `pwd` to $dest"




reply via email to

[Prev in Thread] Current Thread [Next in Thread]