pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/doxygen Changes 1.4.0:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8f1a6f129190
branches:  trunk
changeset: 486965:8f1a6f129190
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Jan 06 10:38:16 2005 +0000

description:
Changes 1.4.0:
* In the HTML help output (.chm files) the index items with only one subitem
  are now collapsed into one item
* Some minor tweaks to the style sheet
* @relates can now not only be used for functions, but also for other members
* Static members do have have explicit "static" in the declaration part of
  the documentation
* typedefs and enumeration are no longer shown in the "referenced by" list as
  these are types
* Make configure script use solaris-g++ by default
  (Sun's own compiler generates faulty code for doxygen)
* Included language update for Serbian, German, and Korean
* For directories dependency graphs are now generated
* Added \cond and \endcond commands, which can be used to (conditionally)
  exclude a part of a file. See the manual for an example
* Added "-d ExtCmd" debug option, which when used shows what doxygen will
  execute when invoking an external command (such as dot)
* New option WARN_NO_PARAMDOC that warns about the absence of function
  parameter or return type documentation
* Nested classes are now listed in their containing class
* Extended the \f command to support different environments, i.e. \f{eqnarray*}
  for equation arrays. The end command is \f}
* Added support for group dependency graphs
* New option DOT_TRANSPARENT to enable dot graph with a transparent background
* New option FILE_VERSION_FILTER which allows an external tool to provide
  version information per file, which is then used in the file documentation
* id 162295: New option DOT_MULTI_TARGETS which when set to YES, will run dot
  with multiple output files if possible
* Bug fixes

diffstat:

 devel/doxygen/Makefile         |  10 +++++-----
 devel/doxygen/PLIST            |   3 ++-
 devel/doxygen/distinfo         |   7 ++++---
 devel/doxygen/patches/patch-ac |   8 ++++++++
 4 files changed, 19 insertions(+), 9 deletions(-)

diffs (73 lines):

diff -r 005a3e3e10dc -r 8f1a6f129190 devel/doxygen/Makefile
--- a/devel/doxygen/Makefile    Thu Jan 06 09:07:06 2005 +0000
+++ b/devel/doxygen/Makefile    Thu Jan 06 10:38:16 2005 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.26 2004/11/09 14:31:51 adam Exp $
+# $NetBSD: Makefile,v 1.27 2005/01/06 10:38:16 adam Exp $
 
-DISTNAME=      doxygen-1.3.9.1.src
-PKGNAME=       doxygen-1.3.9.1
+DISTNAME=      doxygen-1.4.0.src
+PKGNAME=       doxygen-1.4.0
 CATEGORIES=    devel
 MASTER_SITES=  ftp://ftp.stack.nl/pub/users/dimitri/
 
@@ -12,12 +12,12 @@
 DEPENDS+=      teTeX-[0-9]*:../../print/teTeX
 
 WRKSRC=                        ${WRKDIR}/${PKGNAME_NOREV}
+USE_BUILDLINK3=                yes
 USE_GNU_TOOLS+=                make
 USE_LANGUAGES=         c c++
 USE_PERL5=             yes
-USE_BUILDLINK3=                yes
 HAS_CONFIGURE=         yes
-CONFIGURE_ARGS=                --make ${GMAKE}
+CONFIGURE_ARGS+=       --make ${GMAKE}
 CONFIGURE_ARGS+=       --perl ${PERL5}
 CONFIGURE_ARGS+=       --install ${INSTALL}
 CONFIGURE_ARGS+=       --dot ${PREFIX}/bin/dot
diff -r 005a3e3e10dc -r 8f1a6f129190 devel/doxygen/PLIST
--- a/devel/doxygen/PLIST       Thu Jan 06 09:07:06 2005 +0000
+++ b/devel/doxygen/PLIST       Thu Jan 06 10:38:16 2005 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2004/07/26 08:39:57 martti Exp $
+@comment $NetBSD: PLIST,v 1.8 2005/01/06 10:38:16 adam Exp $
 bin/doxygen
 bin/doxytag
 share/doc/doxygen/doxygen_manual.pdf
@@ -410,6 +410,7 @@
 share/doc/doxygen/html/form_3.png
 share/doc/doxygen/html/form_4.png
 share/doc/doxygen/html/form_5.png
+share/doc/doxygen/html/form_6.png
 share/doc/doxygen/html/formula.repository
 share/doc/doxygen/html/formulas.html
 share/doc/doxygen/html/grouping.html
diff -r 005a3e3e10dc -r 8f1a6f129190 devel/doxygen/distinfo
--- a/devel/doxygen/distinfo    Thu Jan 06 09:07:06 2005 +0000
+++ b/devel/doxygen/distinfo    Thu Jan 06 10:38:16 2005 +0000
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.14 2004/11/09 14:31:51 adam Exp $
+$NetBSD: distinfo,v 1.15 2005/01/06 10:38:16 adam Exp $
 
-SHA1 (doxygen-1.3.9.1.src.tar.gz) = 718897a42705f09c43e77a1112b1b9b80e954787
-Size (doxygen-1.3.9.1.src.tar.gz) = 2713070 bytes
+SHA1 (doxygen-1.4.0.src.tar.gz) = f33cbe857dabef3a49d2df2ba4c58e568cd599c8
+Size (doxygen-1.4.0.src.tar.gz) = 2767633 bytes
 SHA1 (patch-aa) = dd970fa86865ee1eca0d41a86366a608e19b582a
 SHA1 (patch-ab) = 58cb9bf5d97835dc0fdda547795e92df7038d8ff
+SHA1 (patch-ac) = 46b564ab39a5fd53129e3b5678c49a41afc39f19
 SHA1 (patch-af) = b52845ca3d4d58a876538e8b4780a19419aabe75
diff -r 005a3e3e10dc -r 8f1a6f129190 devel/doxygen/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/doxygen/patches/patch-ac    Thu Jan 06 10:38:16 2005 +0000
@@ -0,0 +1,8 @@
+$NetBSD: patch-ac,v 1.5 2005/01/06 10:38:16 adam Exp $
+
+--- configure.orig     2005-01-06 10:56:09.000000000 +0000
++++ configure
+@@ -1,2 +1,2 @@
+-#! /bin/bash
++#!/bin/sh
+ #



Home | Main Index | Thread Index | Old Index