summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Heaven <nyhm@gentoo.org>2008-01-22 08:35:02 +0000
committerTristan Heaven <nyhm@gentoo.org>2008-01-22 08:35:02 +0000
commit1d7c448b8c8dd3a1269ad0dc1b427515efcf7ee7 (patch)
tree9ecf1e98b1f06548a836fd59b47357576d41040e /games-strategy/widelands/files
parentStable for HPPA too. (diff)
downloadgentoo-2-1d7c448b8c8dd3a1269ad0dc1b427515efcf7ee7.tar.gz
gentoo-2-1d7c448b8c8dd3a1269ad0dc1b427515efcf7ee7.tar.bz2
gentoo-2-1d7c448b8c8dd3a1269ad0dc1b427515efcf7ee7.zip
rm old versions
(Portage version: 2.1.4)
Diffstat (limited to 'games-strategy/widelands/files')
-rw-r--r--games-strategy/widelands/files/digest-widelands-0.0.103
-rw-r--r--games-strategy/widelands/files/digest-widelands-0.0.9.5-r13
-rw-r--r--games-strategy/widelands/files/widelands-0.0.10-build.patch51
-rw-r--r--games-strategy/widelands/files/widelands-0.0.9-amd64.patch14
-rw-r--r--games-strategy/widelands/files/widelands-0.0.9.5-gcc41.patch5
-rw-r--r--games-strategy/widelands/files/widelands-makefile.patch54
6 files changed, 0 insertions, 130 deletions
diff --git a/games-strategy/widelands/files/digest-widelands-0.0.10 b/games-strategy/widelands/files/digest-widelands-0.0.10
deleted file mode 100644
index 02b6abd30744..000000000000
--- a/games-strategy/widelands/files/digest-widelands-0.0.10
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 9e452baf7b8f22a27b4e371e2150e017 widelands-build10-source.tar.bz2 28526726
-RMD160 65f85d7b7ab756560bd0bc1a470ac2b8775caadc widelands-build10-source.tar.bz2 28526726
-SHA256 f67508066db1739839945f8c814a71a0e4a43904ff4a7f4e7cd3c269bcda18af widelands-build10-source.tar.bz2 28526726
diff --git a/games-strategy/widelands/files/digest-widelands-0.0.9.5-r1 b/games-strategy/widelands/files/digest-widelands-0.0.9.5-r1
deleted file mode 100644
index ba1068bd0424..000000000000
--- a/games-strategy/widelands/files/digest-widelands-0.0.9.5-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 7bced82bda4b83d884da3e5b0143b2b4 widelands-b9half-source.tar.bz2 10989969
-RMD160 b9382690dfec3f789c0db7f0163f7392d889cfb0 widelands-b9half-source.tar.bz2 10989969
-SHA256 a883b410fbe3089233926f3b2314fb3ccc9262b00a1aadbda9f7d73ea572ea9b widelands-b9half-source.tar.bz2 10989969
diff --git a/games-strategy/widelands/files/widelands-0.0.10-build.patch b/games-strategy/widelands/files/widelands-0.0.10-build.patch
deleted file mode 100644
index 2695b9d393e6..000000000000
--- a/games-strategy/widelands/files/widelands-0.0.10-build.patch
+++ /dev/null
@@ -1,51 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -26,7 +26,7 @@
-
- #most current glibc systems implicitly contain libintl.so
- ifndef IMPLICIT_LIBINTL
--IMPLICIT_LIBINTL:=NO
-+IMPLICIT_LIBINTL:=YES
- endif
-
- # Is this a cross compile?
-@@ -106,11 +106,9 @@
- BUILD:=$(strip $(BUILD))
-
- ifeq ($(BUILD),release)
--OPTIMIZE:=yes
- # heavy optimization
- #ADD_CFLAGS:=$(ADD_CFLAGS) -fomit-frame-pointer -finline-functions -ffast-math -funroll-loops -funroll-all-loops -fexpensive-optimizations
- # !!!! -fomit-frame-pointer breaks execeptions !!!!
--ADD_CFLAGS:=$(ADD_CFLAGS) -finline-functions -ffast-math -funroll-loops -funroll-all-loops -fexpensive-optimizations
- else
- ifeq ($(BUILD),profile)
- OPTIMIZE:=yes
-@@ -160,9 +158,8 @@
- # Object files and directories, final compilation flags
-
- OBJECT_DIR:=src/$(TARGET)-$(BUILD)
--CFLAGS:=-Wall $(shell $(SDL_CONFIG) --cflags) $(ADD_CFLAGS)
--CXXFLAGS:=$(CFLAGS)
--LDFLAGS:=$(shell $(SDL_CONFIG) --libs) $(ADD_LDFLAGS) -lz -lpng -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL_net
-+CXXFLAGS+=-Wall $(shell $(SDL_CONFIG) --cflags) $(ADD_CFLAGS)
-+LDFLAGS+=$(shell $(SDL_CONFIG) --libs) $(ADD_LDFLAGS) -lz -lpng -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL_net
-
- ##############################################################################
- # Building
-@@ -217,13 +214,13 @@
-
- $(OBJECT_DIR)/widelands: $(OBJ)
- @echo "===> LD $@"
-- $(Q)$(CXX) $(OBJ) -o $@ $(LDFLAGS) $(CFLAGS)
-+ $(CXX) $(OBJ) -o $@ $(LDFLAGS) $(CXXFLAGS)
-
- -include $(DEP)
-
- $(OBJECT_DIR)/%.o: src/%.cc src/build_id.h src/config.h
- @echo "===> CXX $<"
-- $(Q)$(CXX) -pipe $(CXXFLAGS) -MMD -MP -MF $@.d -c -o $@ $<
-+ $(CXX) $(CXXFLAGS) -MMD -MP -MF $@.d -c -o $@ $<
- $(Q)sed -e 's@^\(.*\)\.o:@\1.d \1.o:@' $@.d > $(OBJECT_DIR)/$*.d
- $(Q)rm $@.d
-
diff --git a/games-strategy/widelands/files/widelands-0.0.9-amd64.patch b/games-strategy/widelands/files/widelands-0.0.9-amd64.patch
deleted file mode 100644
index c29031497be9..000000000000
--- a/games-strategy/widelands/files/widelands-0.0.9-amd64.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -urN widelands.orig/src/machdep.h widelands/src/machdep.h
---- widelands.orig/src/machdep.h 2005-05-04 22:31:16.000000000 -0400
-+++ widelands/src/machdep.h 2005-05-04 22:31:37.000000000 -0400
-@@ -36,6 +36,10 @@
- #undef P_BIG_ENDIAN
- #define P_LITTLE_ENDIAN
- #undef P_ALIGNMENT
-+#elif defined (__x86_64__)
-+#undef P_BIG_ENDIAN
-+#define P_LITTLE_ENDIAN
-+#undef P_ALIGNMENT
- #else
- #error architecture not supported
- #endif
diff --git a/games-strategy/widelands/files/widelands-0.0.9.5-gcc41.patch b/games-strategy/widelands/files/widelands-0.0.9.5-gcc41.patch
deleted file mode 100644
index 493eaf029f41..000000000000
--- a/games-strategy/widelands/files/widelands-0.0.9.5-gcc41.patch
+++ /dev/null
@@ -1,5 +0,0 @@
---- src/ui/ui_fs_menus/fullscreen_menu_options.h.orig 2006-01-23 21:12:33.000000000 +0100
-+++ src/ui/ui_fs_menus/fullscreen_menu_options.h 2006-01-23 21:22:31.000000000 +0100
-@@ -66 +66 @@
-- Options_Ctrl::Options_Struct Fullscreen_Menu_Options::get_values();
-+ Options_Ctrl::Options_Struct get_values();
diff --git a/games-strategy/widelands/files/widelands-makefile.patch b/games-strategy/widelands/files/widelands-makefile.patch
deleted file mode 100644
index 41b2b1cbacdc..000000000000
--- a/games-strategy/widelands/files/widelands-makefile.patch
+++ /dev/null
@@ -1,54 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -61,9 +61,6 @@
- # release optimized
- # profile optimized, debugging symbols, profiling
- #
--ifndef BUILD
--BUILD:=debug
--endif
-
- endif
-
-@@ -124,11 +121,6 @@
- BUILD:=debug
- OPTIMIZE:=yes
- DEBUG:=yes
--else
--BUILD:=debug-no-parachute
--OPTIMIZE:=YES
--DEBUG:=YES
--ADD_CFLAGS:=-DNO_PARACHUTE
- endif
- endif
- endif
-@@ -139,7 +131,7 @@
- endif
-
- ifdef DEBUG
--ADD_CFLAGS += -g -DDEBUG -fmessage-length=0
-+ADD_CFLAGS += -DDEBUG
- else
- ADD_CFLAGS += -DNDEBUG
- endif
-@@ -160,9 +152,9 @@
- # Object files and directories, final compilation flags
-
- OBJECT_DIR:=src/$(TARGET)-$(BUILD)
--CFLAGS:=-Wall $(shell $(SDL_CONFIG) --cflags) $(ADD_CFLAGS)
-+CFLAGS:=-Wall $(shell $(SDL_CONFIG) --cflags) $(ADD_CFLAGS) $(CFLAGS)
- CXXFLAGS:=$(CFLAGS)
--LDFLAGS:=$(shell $(SDL_CONFIG) --libs) $(ADD_LDFLAGS) -lz -lpng -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL_net
-+LDFLAGS:=$(shell $(SDL_CONFIG) --libs) $(ADD_LDFLAGS) -lz -lpng -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL_net $(LDFLAGS)
-
- ##############################################################################
- # Building
-@@ -220,7 +212,7 @@
- -include $(DEP)
-
- $(OBJECT_DIR)/%.o: src/%.cc
-- $(CXX) -pipe $(CXXFLAGS) -MMD -MP -MF $@.d -c -o $@ $<
-+ $(CXX) $(CXXFLAGS) -MMD -MP -MF $@.d -c -o $@ $<
- sed -e 's@^\(.*\)\.o:@\1.d \1.o:@' $@.d > $(OBJECT_DIR)/$*.d
- rm $@.d
-