summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Mrozowski <reavertm@gentoo.org>2012-11-06 01:04:41 +0000
committerMaciej Mrozowski <reavertm@gentoo.org>2012-11-06 01:04:41 +0000
commit7f30d6c35cb2b6eb0ea9e23619732e017051e1af (patch)
treee9c2cc245130fccd299c35f4511b8921233ae3a7 /dev-util/ddd/files
parentVersion bump for multiple minor bug fixes. Remove old unused versions. (diff)
downloadgentoo-2-7f30d6c35cb2b6eb0ea9e23619732e017051e1af.tar.gz
gentoo-2-7f30d6c35cb2b6eb0ea9e23619732e017051e1af.tar.bz2
gentoo-2-7f30d6c35cb2b6eb0ea9e23619732e017051e1af.zip
Add readline USE flag, fix manpage installation bug 439888 and machine code view bug 439766 (by Simone Scanzoni)
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key B1E955DB)
Diffstat (limited to 'dev-util/ddd/files')
-rw-r--r--dev-util/ddd/files/ddd-3.3.12-gdb-disassembler-bug.patch11
-rw-r--r--dev-util/ddd/files/ddd-3.3.12-man.patch16
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-util/ddd/files/ddd-3.3.12-gdb-disassembler-bug.patch b/dev-util/ddd/files/ddd-3.3.12-gdb-disassembler-bug.patch
new file mode 100644
index 000000000000..738cda5946f9
--- /dev/null
+++ b/dev-util/ddd/files/ddd-3.3.12-gdb-disassembler-bug.patch
@@ -0,0 +1,11 @@
+--- a/ddd/GDBAgent.C 2004-09-01 20:07:38.000000000 +0200
++++ b/ddd/GDBAgent.C 2010-06-15 14:16:34.000000000 +0200
+@@ -3078,7 +3078,7 @@
+ {
+ string end_( end );
+ normalize_address(end_);
+- cmd += ' ';
++ cmd += ',';
+ cmd += end_;
+ }
+ return cmd;
diff --git a/dev-util/ddd/files/ddd-3.3.12-man.patch b/dev-util/ddd/files/ddd-3.3.12-man.patch
new file mode 100644
index 000000000000..c6a1bc4fba24
--- /dev/null
+++ b/dev-util/ddd/files/ddd-3.3.12-man.patch
@@ -0,0 +1,16 @@
+diff -ruN ddd-3.3.12/ddd/Makefile.am ddd-my/ddd/Makefile.am
+--- ddd-3.3.12/ddd/Makefile.am 2009-02-11 18:25:07.000000000 +0100
++++ ddd-my/ddd/Makefile.am 2012-11-06 01:48:46.363493473 +0100
+@@ -1371,10 +1371,8 @@
+ man_MANS = ddd.1
+
+ # `ddd.man' has 8-bit format, `ddd.1' has 7-bit format
+-ddd.1: ddd.man $(srcdir)/unumlaut.sed
+- -$(SED) -f $(srcdir)/unumlaut.sed ddd.man | $(DELETE_CR) > $@~ \
+- && $(MV) $@~ $@
+-
++ddd.1: ddd.man
++ iconv -f ISO8859-15 -t UTF8 ddd.man > ddd.1
+
+
+ # -----------------------------------------------------------------------------