pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/doxygen The latest doxygen encodes the source di...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/151d2a29c122
branches:  trunk
changeset: 500817:151d2a29c122
user:      markd <markd%pkgsrc.org@localhost>
date:      Thu Oct 13 12:15:57 2005 +0000

description:
The latest doxygen encodes the source directory path into some of the
output filenames.  This is problematic in a pkgsrc context as it means
WRKDIR pathnames can appear in generated filenames.  Fix by reverting
to the old way of naming the files.  Bump PKGREVISION.

diffstat:

 devel/doxygen/Makefile         |   3 ++-
 devel/doxygen/distinfo         |   3 ++-
 devel/doxygen/patches/patch-ah |  15 +++++++++++++++
 3 files changed, 19 insertions(+), 2 deletions(-)

diffs (46 lines):

diff -r ab867d330960 -r 151d2a29c122 devel/doxygen/Makefile
--- a/devel/doxygen/Makefile    Thu Oct 13 11:17:38 2005 +0000
+++ b/devel/doxygen/Makefile    Thu Oct 13 12:15:57 2005 +0000
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.36 2005/10/08 08:17:27 adam Exp $
+# $NetBSD: Makefile,v 1.37 2005/10/13 12:15:57 markd Exp $
 
 DISTNAME=      doxygen-1.4.5.src
 PKGNAME=       doxygen-1.4.5
+PKGREVISION=   1
 CATEGORIES=    devel
 MASTER_SITES=  ftp://ftp.stack.nl/pub/users/dimitri/
 
diff -r ab867d330960 -r 151d2a29c122 devel/doxygen/distinfo
--- a/devel/doxygen/distinfo    Thu Oct 13 11:17:38 2005 +0000
+++ b/devel/doxygen/distinfo    Thu Oct 13 12:15:57 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.21 2005/10/08 08:17:27 adam Exp $
+$NetBSD: distinfo,v 1.22 2005/10/13 12:15:58 markd Exp $
 
 SHA1 (doxygen-1.4.5.src.tar.gz) = cbd01c0f1369cdd078c7bee4646559f805bfb237
 RMD160 (doxygen-1.4.5.src.tar.gz) = 9fcc6820b2036e54ecee91650f2470d179d86e2e
@@ -7,3 +7,4 @@
 SHA1 (patch-ab) = 099083824e1b6201e9562dc220a58b2dfd2f9f6c
 SHA1 (patch-af) = b52845ca3d4d58a876538e8b4780a19419aabe75
 SHA1 (patch-ag) = a7cf7cd0b510e9a8293e5f8a43517cfc80a60d15
+SHA1 (patch-ah) = 506ed1a8b76375328f108862c5ae19abdd51328a
diff -r ab867d330960 -r 151d2a29c122 devel/doxygen/patches/patch-ah
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/doxygen/patches/patch-ah    Thu Oct 13 12:15:57 2005 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-ah,v 1.1 2005/10/13 12:15:58 markd Exp $
+
+--- src/dirdef.cpp.orig        2005-10-13 23:53:05.000000000 +1300
++++ src/dirdef.cpp
+@@ -91,8 +91,8 @@ static QCString escapeDirName(const QCSt
+ 
+ QCString DirDef::getOutputFileBase() const
+ {
+-  return "dir_"+escapeDirName(name());
+-  //return QCString().sprintf("dir_%06d",m_dirCount);
++  //return "dir_"+escapeDirName(name());
++  return QCString().sprintf("dir_%06d",m_dirCount);
+ }
+ 
+ void DirDef::writeDetailedDocumentation(OutputList &ol)



Home | Main Index | Thread Index | Old Index