diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-11-21 23:47:34 -0500 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-11-21 23:47:34 -0500 |
commit | 1c06f739857983839f74f6b4cf36bfa6f082690f (patch) | |
tree | 7e5fff20d2cb8a66976c070360b53b2949992c07 /games-arcade/opentyrian/files | |
parent | use epatch to apply patch; update HOMEPAGE; better deps (diff) | |
download | gentoo-1c06f739857983839f74f6b4cf36bfa6f082690f.tar.gz gentoo-1c06f739857983839f74f6b4cf36bfa6f082690f.tar.bz2 gentoo-1c06f739857983839f74f6b4cf36bfa6f082690f.zip |
clean old
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'games-arcade/opentyrian/files')
5 files changed, 0 insertions, 102 deletions
diff --git a/games-arcade/opentyrian/files/20090702-datapath.diff b/games-arcade/opentyrian/files/20090702-datapath.diff deleted file mode 100644 index 53ca3e8c789e..000000000000 --- a/games-arcade/opentyrian/files/20090702-datapath.diff +++ /dev/null @@ -1,23 +0,0 @@ ---- opentyrian/Makefile.orig 2009-07-02 23:19:47.000000000 +0100 -+++ opentyrian/Makefile 2009-07-02 23:20:27.000000000 +0100 -@@ -54,6 +54,9 @@ - CFLAGS += -DSVN_REV=\"$(SVN_REV)\" - endif - -+ifneq ($(DATA_PATH), ) -+ CFLAGS += -DDATA_PATH=\"$(DATA_PATH)\" -+endif - #################################################### - - all : $(TARGET) ---- opentyrian/src/error.c.orig 2009-07-02 23:17:00.000000000 +0100 -+++ opentyrian/src/error.c 2009-07-02 23:21:01.000000000 +0100 -@@ -33,7 +33,7 @@ - JE_boolean dont_die = false; - - #ifndef TARGET_MACOSX --static const char *tyrian_searchpaths[] = { "data", "tyrian", "tyrian21" }; -+static const char *tyrian_searchpaths[] = { DATA_PATH , "data", "tyrian", "tyrian21" }; - #endif - - JE_longint JE_getFileSize( const char *filename ) diff --git a/games-arcade/opentyrian/files/20091025-cflag-idiocy.diff b/games-arcade/opentyrian/files/20091025-cflag-idiocy.diff deleted file mode 100644 index 29ed57c2e29d..000000000000 --- a/games-arcade/opentyrian/files/20091025-cflag-idiocy.diff +++ /dev/null @@ -1,12 +0,0 @@ ---- opentyrian/Makefile.orig 2009-10-25 00:52:54.401229746 +0100 -+++ opentyrian/Makefile 2009-10-25 00:54:37.642954736 +0100 -@@ -49,9 +49,6 @@ - - # FLAGS #################################################### - --NDEBUG_FLAGS := -g0 -O2 -DNDEBUG --DEBUG_FLAGS := -g3 -O0 -Werror -- - CFLAGS += --std=c99 -pedantic -Wall -Wextra -Wno-sign-compare -Wno-missing-field-initializers - CFLAGS += -I./src -I$(INCLUDEDIR) - LDFLAGS += -L$(LIBDIR) -lm diff --git a/games-arcade/opentyrian/files/20091025-datapath.diff b/games-arcade/opentyrian/files/20091025-datapath.diff deleted file mode 100644 index e83447ebf8f5..000000000000 --- a/games-arcade/opentyrian/files/20091025-datapath.diff +++ /dev/null @@ -1,26 +0,0 @@ -diff -uNr opentyrian.ORIG/Makefile opentyrian/Makefile ---- opentyrian.ORIG/Makefile 2009-10-25 00:45:41.958937396 +0100 -+++ opentyrian/Makefile 2009-10-25 00:47:31.759940038 +0100 -@@ -73,6 +73,10 @@ - CFLAGS += -DHG_REV='"$(HG_REV)"' - endif - -+ifneq ($(DATA_PATH), ) -+ CFLAGS += -DDATA_PATH=\"$(DATA_PATH)\" -+endif -+ - # RULES #################################################### - - .PHONY : all -diff -uNr opentyrian.ORIG/src/file.c opentyrian/src/file.c ---- opentyrian.ORIG/src/file.c 2009-10-25 00:45:41.967228200 +0100 -+++ opentyrian/src/file.c 2009-10-25 00:50:21.542979700 +0100 -@@ -34,7 +34,7 @@ - #ifdef TARGET_MACOSX - tyrian_game_folder(), - #endif -- "/usr/share/opentyrian/data" -+ DATA_PATH - }; - - static const char *dir = NULL; diff --git a/games-arcade/opentyrian/files/20110517-cflag-idiocy.diff b/games-arcade/opentyrian/files/20110517-cflag-idiocy.diff deleted file mode 100644 index fbc178ad3418..000000000000 --- a/games-arcade/opentyrian/files/20110517-cflag-idiocy.diff +++ /dev/null @@ -1,15 +0,0 @@ -diff -uNr opentyrian.ORIG//Makefile opentyrian/Makefile ---- opentyrian.ORIG//Makefile 2011-05-17 11:26:17.030004857 +0100 -+++ opentyrian/Makefile 2011-05-17 11:28:48.617004931 +0100 -@@ -18,11 +18,6 @@ - - # FLAGS #################################################### - --ifneq ($(MAKECMDGOALS), release) -- EXTRA_CFLAGS += -g3 -O0 -Werror --else -- EXTRA_CFLAGS += -g0 -O2 -DNDEBUG --endif - EXTRA_CFLAGS += -MMD -pedantic -Wall -Wextra -Wno-missing-field-initializers - - HG_REV := $(shell hg id -ib && touch src/hg_revision.h) diff --git a/games-arcade/opentyrian/files/20110517-datapath.diff b/games-arcade/opentyrian/files/20110517-datapath.diff deleted file mode 100644 index 6d7f52cd6bd6..000000000000 --- a/games-arcade/opentyrian/files/20110517-datapath.diff +++ /dev/null @@ -1,26 +0,0 @@ -diff -uNr opentyrian.ORIG//Makefile opentyrian/Makefile ---- opentyrian.ORIG//Makefile 2011-05-17 11:26:17.030004857 +0100 -+++ opentyrian/Makefile 2011-05-17 11:26:52.595004876 +0100 -@@ -39,6 +39,10 @@ - ALL_LDFLAGS += $(LDFLAGS) - LDLIBS += $(EXTRA_LDLIBS) $(SDL_LDLIBS) - -+ifneq ($(DATA_PATH), ) -+ CFLAGS += -DDATA_PATH=\"$(DATA_PATH)\" -+endif -+ - # RULES #################################################### - - .PHONY : all release clean -diff -uNr opentyrian.ORIG//src/file.c opentyrian/src/file.c ---- opentyrian.ORIG//src/file.c 2011-05-17 11:26:17.020004860 +0100 -+++ opentyrian/src/file.c 2011-05-17 11:26:52.595004876 +0100 -@@ -34,7 +34,7 @@ - #ifdef TARGET_MACOSX - tyrian_game_folder(), - #endif -- "/usr/share/opentyrian/data" -+ DATA_PATH - }; - - static const char *dir = NULL; |