diff options
author | jlam <jlam@pkgsrc.org> | 1999-10-01 22:54:16 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 1999-10-01 22:54:16 +0000 |
commit | c6c0c1caa28a3781a12aaccee4a109c1c39e35f3 (patch) | |
tree | 430ddc290016f56fc7390e3d2259f098b9a2e0f9 /devel/gindent/Makefile | |
parent | be104555f9323031e94193d1110751e2abc08a0f (diff) | |
download | pkgsrc-c6c0c1caa28a3781a12aaccee4a109c1c39e35f3.tar.gz |
Update gindent to 2.2.2. Changes from 2.2.0:
Release notes for GNU indent version 2.2.2, September 1999
* Added support for win32 (need VC++)
* Indent was sometimes adding a blank line at the top of an indented
file when indenting multiple files at once. This bug has been fixed.
Release notes for GNU indent version 2.2.1, September 1999
* Indent got confused when a function declaration contained an enum
and did not contain a colon before using a '{' inside the function.
enum foobar <-- returns enum
func (enum foobar) <-- or uses an enum as parameter
{
if (1)
{ <-- uses '{' before any ';' was used
func (1);} <-- fails here
... etc.
* A new option to stop `make' from rebuilding your whole project
after running `indent':
-pmt, --preserve-mtime :
Preserve modification time on output files.
* Backup files now keep the same modification time as the
original.
* New -c++, --c-plus-plus option to allow better C++ formatting:
Recognizes C++ keywords, including the GNU extension operators <?= and >?=.
(Patch by Malekith <malekith@topnet.pl>)
Note: In general C++ still does NOT work!
* EBCDIC charset support for BS2000/POSIX (Siemens mainframe OS).
Contributed by <Martin.Kraemer@MchP.Siemens.De>.
Diffstat (limited to 'devel/gindent/Makefile')
-rw-r--r-- | devel/gindent/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/devel/gindent/Makefile b/devel/gindent/Makefile index 40298425a4e..02679db8b4f 100644 --- a/devel/gindent/Makefile +++ b/devel/gindent/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.16 1999/08/20 06:12:57 kim Exp $ +# $NetBSD: Makefile,v 1.17 1999/10/01 22:54:16 jlam Exp $ # FreeBSD Id: Makefile,v 1.1.1.1 1997/08/29 09:20:00 obrien Exp # -DISTNAME= indent-2.2.0 -PKGNAME= gindent-2.2.0 +DISTNAME= indent-2.2.2 +PKGNAME= gindent-2.2.2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=indent/} @@ -12,6 +12,7 @@ HOMEPAGE= http://www.gnu.org/software/indent/indent.html GNU_CONFIGURE= yes CONFIGURE_ARGS= --program-prefix=g + INFO_FILES= indent.info .include "../../mk/bsd.pkg.mk" |