Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Oct 2007 03:49:15 +0200
From:      Marcin Wisnicki <mwisnicki+freebsd@gmail.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/117550: [MAINTAINER] devel/doxygen: update to 1.5.3
Message-ID:  <4722991e.188d420a.7705.ffff9937@mx.google.com>
Resent-Message-ID: <200710270210.l9R2A1YU068045@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         117550
>Category:       ports
>Synopsis:       [MAINTAINER] devel/doxygen: update to 1.5.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Oct 27 02:10:01 UTC 2007
>Closed-Date:
>Last-Modified:
>Originator:     Marcin Wisnicki
>Release:        FreeBSD 6.2-STABLE i386
>Organization:
>Environment:
System: FreeBSD desktop.pnet.one.pl 6.2-STABLE FreeBSD 6.2-STABLE #9: Sun Sep  9 04:53:53 CEST
>Description:
- Update to 1.5.3

Removed file(s):
- files/patch-fix_with_libiconv-1.11

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- doxygen-1.5.3.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/devel/doxygen.orig/Makefile /usr/ports/devel/doxygen/Makefile
--- /usr/ports/devel/doxygen.orig/Makefile	2007-10-25 01:35:14.000000000 +0200
+++ /usr/ports/devel/doxygen/Makefile	2007-10-26 21:50:11.000000000 +0200
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	doxygen
-PORTVERSION=	1.5.2
+PORTVERSION=	1.5.3
 CATEGORIES=	devel
 MASTER_SITES=	ftp://ftp.stack.nl/pub/users/dimitri/
 EXTRACT_SUFX=	.src.tar.gz
diff -ruN --exclude=CVS /usr/ports/devel/doxygen.orig/distinfo /usr/ports/devel/doxygen/distinfo
--- /usr/ports/devel/doxygen.orig/distinfo	2007-06-13 11:52:38.000000000 +0200
+++ /usr/ports/devel/doxygen/distinfo	2007-10-26 21:50:17.000000000 +0200
@@ -1,3 +1,3 @@
-MD5 (doxygen-1.5.2.src.tar.gz) = f2782e5bd31a7d10b092500bf0d96ae2
-SHA256 (doxygen-1.5.2.src.tar.gz) = 496220360b92de6169458b282a8faa32065f71db26d33fb9dc291178fc75381d
-SIZE (doxygen-1.5.2.src.tar.gz) = 3599976
+MD5 (doxygen-1.5.3.src.tar.gz) = 5fd6f0c2c7946005703b47dc6b663757
+SHA256 (doxygen-1.5.3.src.tar.gz) = f0423a198c3183c03f88c16fdaec69c65f29756c893d0c688ac2c670f0d83a0b
+SIZE (doxygen-1.5.3.src.tar.gz) = 3617278
diff -ruN --exclude=CVS /usr/ports/devel/doxygen.orig/files/patch-fix_with_libiconv-1.11 /usr/ports/devel/doxygen/files/patch-fix_with_libiconv-1.11
--- /usr/ports/devel/doxygen.orig/files/patch-fix_with_libiconv-1.11	2007-10-25 01:35:14.000000000 +0200
+++ /usr/ports/devel/doxygen/files/patch-fix_with_libiconv-1.11	1970-01-01 01:00:00.000000000 +0100
@@ -1,11 +0,0 @@
---- src/portable.cpp.orig	2007-10-11 14:27:23.000000000 -0500
-+++ src/portable.cpp	2007-10-11 14:28:15.000000000 -0500
-@@ -378,7 +378,7 @@
- #else
- #define CASTNEEDED(x) (char **)(x)
- #endif
--  return iconv(cd,CASTNEEDED(inbuf),inbytesleft,outbuf,outbytesleft);
-+  return iconv(cd,inbuf,inbytesleft,outbuf,outbytesleft);
- }
- 
- int portable_iconv_close (void *cd)
diff -ruN --exclude=CVS /usr/ports/devel/doxygen.orig/files/patch-md5 /usr/ports/devel/doxygen/files/patch-md5
--- /usr/ports/devel/doxygen.orig/files/patch-md5	2007-06-13 11:52:38.000000000 +0200
+++ /usr/ports/devel/doxygen/files/patch-md5	2007-10-26 22:41:38.000000000 +0200
@@ -3,6 +3,29 @@
 
 	-mi
 
+diff -ruN src/definition.cpp src/definition.cpp
+--- src/definition.cpp	2007-07-25 20:14:17.000000000 +0200
++++ src/definition.cpp	2007-10-26 22:05:50.000000000 +0200
+@@ -18,6 +18,7 @@
+ #include "qtbc.h"
+ #include <ctype.h>
+ #include <qregexp.h>
++#include <sys/types.h>
+ #include <md5.h>
+ #include <stdio.h>
+ #include <stdlib.h>
+@@ -352,10 +353,8 @@
+ 
+ bool Definition::_docsAlreadyAdded(const QString &doc)
+ {
+-  uchar md5_sig[16];
+   QCString sigStr(33);
+-  MD5Buffer((const unsigned char *)doc.data(),doc.length(),md5_sig);
+-  MD5SigToString(md5_sig,sigStr.data(),33);
++  MD5Data((const unsigned char*)doc.data(),doc.length(),sigStr.data());
+   if (m_impl->docSignatures.find(sigStr)==-1) // new docs, add signature to prevent re-adding it
+   {
+     m_impl->docSignatures+=":"+sigStr;
 diff -ruN src/dirdef.cpp src/dirdef.cpp
 --- src/dirdef.cpp	Sun Jan 28 13:28:50 2007
 +++ src/dirdef.cpp	Mon Jun 11 18:32:26 2007
--- doxygen-1.5.3.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4722991e.188d420a.7705.ffff9937>