summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-util/ltrace/files
downloadgentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip
proj/gentoo: Initial commit
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-util/ltrace/files')
-rw-r--r--dev-util/ltrace/files/0.4-parallel-make.patch11
-rw-r--r--dev-util/ltrace/files/ltrace-0.5.3-cross.patch20
-rw-r--r--dev-util/ltrace/files/ltrace-0.5.3-ppc.patch10
-rw-r--r--dev-util/ltrace/files/ltrace-0.5.3.1-gcc43-testsuite.patch9
4 files changed, 50 insertions, 0 deletions
diff --git a/dev-util/ltrace/files/0.4-parallel-make.patch b/dev-util/ltrace/files/0.4-parallel-make.patch
new file mode 100644
index 000000000000..3fd3624477ab
--- /dev/null
+++ b/dev-util/ltrace/files/0.4-parallel-make.patch
@@ -0,0 +1,11 @@
+--- ltrace-0.3.36.orig/Makefile.in 2004-11-10 01:12:03.000000000 +0200
++++ ltrace-0.3.36/Makefile.in 2006-09-02 11:10:57.000000000 +0300
+@@ -35,6 +35,8 @@
+ ltrace: sysdeps/sysdep.o $(OBJ)
+ $(CC) $(LDFLAGS) $^ $(LIBS) -o $@
+
++$(OBJ): sysdeps/sysdep.o
++
+ sysdeps/sysdep.o: dummy
+ $(MAKE) -C sysdeps/$(OS)
+
diff --git a/dev-util/ltrace/files/ltrace-0.5.3-cross.patch b/dev-util/ltrace/files/ltrace-0.5.3-cross.patch
new file mode 100644
index 000000000000..610bbccf1fd8
--- /dev/null
+++ b/dev-util/ltrace/files/ltrace-0.5.3-cross.patch
@@ -0,0 +1,20 @@
+--- configure.ac
++++ configure.ac
+@@ -8,6 +8,8 @@
+ AC_CANONICAL_HOST
+ HOST_OS="$host_os"
+ AC_SUBST(HOST_OS)
++HOST_CPU="$host_cpu"
++AC_SUBST(HOST_CPU)
+
+ dnl Checks for programs.
+ AC_PROG_CC
+@@ -84,7 +86,7 @@
+ dnl of libelf and ltrace matches.
+ AC_SYS_LARGEFILE
+ fi
+-AC_OUTPUT(Makefile testsuite/Makefile \
++AC_OUTPUT(Makefile sysdeps/linux-gnu/Makefile testsuite/Makefile \
+ testsuite/ltrace.main/Makefile testsuite/ltrace.minor/Makefile \
+ testsuite/ltrace.torture/Makefile )
+
diff --git a/dev-util/ltrace/files/ltrace-0.5.3-ppc.patch b/dev-util/ltrace/files/ltrace-0.5.3-ppc.patch
new file mode 100644
index 000000000000..e344c3e28f5b
--- /dev/null
+++ b/dev-util/ltrace/files/ltrace-0.5.3-ppc.patch
@@ -0,0 +1,10 @@
+diff -Naur ltrace-0.5.old/sysdeps/linux-gnu/Makefile.in ltrace-0.5/sysdeps/linux-gnu/Makefile.in
+--- ltrace-0.5.old/sysdeps/linux-gnu/Makefile.in 2007-12-26 18:55:42.000000000 +0000
++++ ltrace-0.5/sysdeps/linux-gnu/Makefile.in 2007-12-26 18:55:55.000000000 +0000
+@@ -1,5 +1,6 @@
+ ARCH := $(shell echo @HOST_CPU@ | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
+- -e s/arm.*/arm/ -e s/sa110/arm/ -e s/ppc64/ppc/ -e s/s390x/s390/)
++ -e s/arm.*/arm/ -e s/sa110/arm/ -e s/ppc64/ppc/ -e s/s390x/s390/ \
++ -e s/powerpc64/ppc/ -e s/powerpc/ppc/)
+
+ CPPFLAGS += -I$(TOPDIR)/sysdeps/linux-gnu/$(ARCH)
diff --git a/dev-util/ltrace/files/ltrace-0.5.3.1-gcc43-testsuite.patch b/dev-util/ltrace/files/ltrace-0.5.3.1-gcc43-testsuite.patch
new file mode 100644
index 000000000000..e115c97322fd
--- /dev/null
+++ b/dev-util/ltrace/files/ltrace-0.5.3.1-gcc43-testsuite.patch
@@ -0,0 +1,9 @@
+diff -Naurp ltrace-0.5-orig/testsuite/ltrace.minor/demangle-lib.cpp ltrace-0.5/testsuite/ltrace.minor/demangle-lib.cpp
+--- ltrace-0.5-orig/testsuite/ltrace.minor/demangle-lib.cpp 2006-03-13 17:12:01.000000000 -0600
++++ ltrace-0.5/testsuite/ltrace.minor/demangle-lib.cpp 2009-07-27 13:47:43.876929485 -0600
+@@ -1,4 +1,5 @@
+ #include<stddef.h>
++#include<stdlib.h>
+ #include<iostream>
+
+ #include"demangle.h"