doxygen-1.5-dot-eps.patch
2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Pass -Teps instead of -Tps to graphviz dot.
Supposed to work with graphviz version 2.20.0 and later.
2009-08-20 Martin von Gagern
References:
http://bugs.gentoo.org/282150
http://bugzilla.gnome.org/show_bug.cgi?id=592516
Index: doxygen-1.5.8/src/dot.cpp
===================================================================
--- doxygen-1.5.8.orig/src/dot.cpp
+++ doxygen-1.5.8/src/dot.cpp
@@ -1887,7 +1887,7 @@ QCString DotClassGraph::writeGraph(QText
else if (format==EPS) // run dot to create a .eps image
{
DotRunner dotRun(baseName+".dot");
- dotRun.addJob("ps",baseName+".eps");
+ dotRun.addJob("eps",baseName+".eps");
if (!dotRun.run())
{
QDir::setCurrent(oldDir);
@@ -2221,7 +2221,7 @@ QCString DotInclDepGraph::writeGraph(QTe
{
// run dot to create a .eps image
DotRunner dotRun(baseName+".dot");
- dotRun.addJob("ps",baseName+".eps");
+ dotRun.addJob("eps",baseName+".eps");
if (!dotRun.run())
{
QDir::setCurrent(oldDir);
@@ -2515,7 +2515,7 @@ QCString DotCallGraph::writeGraph(QTextS
{
// run dot to create a .eps image
DotRunner dotRun(baseName+".dot");
- dotRun.addJob("ps",baseName+".eps");
+ dotRun.addJob("eps",baseName+".eps");
if (!dotRun.run())
{
QDir::setCurrent(oldDir);
@@ -2657,7 +2657,7 @@ QCString DotDirDeps::writeGraph(QTextStr
{
// run dot to create a .eps image
DotRunner dotRun(baseName+".dot");
- dotRun.addJob("ps",baseName+".eps");
+ dotRun.addJob("eps",baseName+".eps");
if (!dotRun.run())
{
QDir::setCurrent(oldDir);
@@ -2824,7 +2824,7 @@ void writeDotGraphFromFile(const char *i
if (format==BITMAP)
dotRun.addJob(imgExt,imgName);
else // format==EPS
- dotRun.addJob("ps",QCString(outFile)+".eps");
+ dotRun.addJob("eps",QCString(outFile)+".eps");
if (!dotRun.run())
{
QDir::setCurrent(oldDir);
@@ -3185,7 +3185,7 @@ QCString DotGroupCollaboration::writeGra
else if (format==EPS)
{
DotRunner dotRun(baseName+".dot");
- dotRun.addJob("ps",baseName+".eps");
+ dotRun.addJob("eps",baseName+".eps");
if (!dotRun.run())
{
QDir::setCurrent(oldDir);