diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /games-action/xbomber/files | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.xz |
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 'games-action/xbomber/files')
-rw-r--r-- | games-action/xbomber/files/xbomber-101-gcc4.patch | 11 | ||||
-rw-r--r-- | games-action/xbomber/files/xbomber-101-ldflags.patch | 15 | ||||
-rw-r--r-- | games-action/xbomber/files/xbomber-101-va_list.patch | 48 |
3 files changed, 74 insertions, 0 deletions
diff --git a/games-action/xbomber/files/xbomber-101-gcc4.patch b/games-action/xbomber/files/xbomber-101-gcc4.patch new file mode 100644 index 00000000000..8a5a063c614 --- /dev/null +++ b/games-action/xbomber/files/xbomber-101-gcc4.patch @@ -0,0 +1,11 @@ +--- bomber.c.old 2006-01-28 12:06:34.000000000 -0700 ++++ bomber.c 2006-01-28 12:06:46.000000000 -0700 +@@ -1699,7 +1699,7 @@ + } + void addtail(void *header,void *entry) + { +- while(((list *)header)->next) ((list *)header)=((list *)header)->next; ++ while(((list *)header)->next) header=((list *)header)->next; + ((list *)header)->next=entry; + ((list *)entry)->next=0; + } diff --git a/games-action/xbomber/files/xbomber-101-ldflags.patch b/games-action/xbomber/files/xbomber-101-ldflags.patch new file mode 100644 index 00000000000..ebde16412b5 --- /dev/null +++ b/games-action/xbomber/files/xbomber-101-ldflags.patch @@ -0,0 +1,15 @@ +--- Makefile.old 2010-10-19 09:17:43.000000000 +0200 ++++ Makefile 2010-10-19 09:18:12.000000000 +0200 +@@ -1,10 +1,8 @@ +-CFLAGS = -O3 +- + bomber: bomber.o x.o sound.o matcher +- $(CC) -o bomber bomber.o x.o sound.o -lX11 -L/usr/X11R6/lib/ ++ $(CC) $(CFLAGS) $(LDFLAGS) -o bomber bomber.o x.o sound.o -lX11 -L/usr/X11R6/lib/ + + matcher: matcher.c +- $(CC) matcher.c -o matcher ++ $(CC) $(CFLAGS) $(LDFLAGS) matcher.c -o matcher + + bomber.o: bomber.c bomber.h + diff --git a/games-action/xbomber/files/xbomber-101-va_list.patch b/games-action/xbomber/files/xbomber-101-va_list.patch new file mode 100644 index 00000000000..cd15b84b00e --- /dev/null +++ b/games-action/xbomber/files/xbomber-101-va_list.patch @@ -0,0 +1,48 @@ +--- bomber.c.orig 2005-11-06 16:50:04.000000000 +0100 ++++ bomber.c 2005-11-06 16:47:35.000000000 +0100 +@@ -1,5 +1,6 @@ + #include <stdio.h> + #include <stdlib.h> ++#include <stdarg.h> + #include <unistd.h> + #include <string.h> + #include <sys/uio.h> +@@ -626,8 +627,11 @@ + void scrprintf(char *str,...) + { + char output[256],*p,*p2; ++va_list ap; + +- vsprintf(output,str,&str+1); ++ va_start(ap, str); ++ vsprintf(output,str,ap); ++ va_end(ap); + p=output; + for(;;) + { +@@ -653,8 +657,11 @@ + void bigscrprintf(char *str,...) + { + char output[256],*p,*p2; ++va_list ap; + +- vsprintf(output,str,&str+1); ++ va_start(ap, str); ++ vsprintf(output,str,ap); ++ va_end(ap); + p=output; + for(;;) + { +@@ -1873,8 +1880,11 @@ + additem(char *item,...) + { + char output[256]; ++va_list ap; + +- vsprintf(output,item,&item+1); ++ va_start(ap, item); ++ vsprintf(output,item,ap); ++ va_end(ap); + if(menunum<0) + menutitle=menuput; + else |