diff options
author | 2007-09-14 14:20:29 +0000 | |
---|---|---|
committer | 2007-09-14 14:20:29 +0000 | |
commit | 001ca32107bb3a682ca5498126b40a73bb905d71 (patch) | |
tree | 95c63e6f5e9cc7679cbe40fc2e3b7c51ccb7c032 /games-strategy/widelands/files | |
parent | another fix for #191090 (diff) | |
download | gentoo-2-001ca32107bb3a682ca5498126b40a73bb905d71.tar.gz gentoo-2-001ca32107bb3a682ca5498126b40a73bb905d71.tar.bz2 gentoo-2-001ca32107bb3a682ca5498126b40a73bb905d71.zip |
Version bump by Juan Aguado, bug #192244
(Portage version: 2.1.3.9)
Diffstat (limited to 'games-strategy/widelands/files')
-rw-r--r-- | games-strategy/widelands/files/digest-widelands-0.0.11 | 3 | ||||
-rw-r--r-- | games-strategy/widelands/files/widelands-0.0.11-build.patch | 60 |
2 files changed, 63 insertions, 0 deletions
diff --git a/games-strategy/widelands/files/digest-widelands-0.0.11 b/games-strategy/widelands/files/digest-widelands-0.0.11 new file mode 100644 index 000000000000..5c82adf4588c --- /dev/null +++ b/games-strategy/widelands/files/digest-widelands-0.0.11 @@ -0,0 +1,3 @@ +MD5 ad41d917f7895b6212009ac584178b55 widelands-build-11-source.tar.bz2 35011678 +RMD160 0aa009e91ee661b7e7bf04f82c4a136bb1e651e0 widelands-build-11-source.tar.bz2 35011678 +SHA256 102a305703070eb20af23f3015c8e1dfc9f87d7f719d71e07fcdbf84e85de0d3 widelands-build-11-source.tar.bz2 35011678 diff --git a/games-strategy/widelands/files/widelands-0.0.11-build.patch b/games-strategy/widelands/files/widelands-0.0.11-build.patch new file mode 100644 index 000000000000..64f4691b2bc7 --- /dev/null +++ b/games-strategy/widelands/files/widelands-0.0.11-build.patch @@ -0,0 +1,60 @@ +--- 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? +@@ -64,7 +64,7 @@ + # profile optimized, debugging symbols, profiling + # + ifndef BUILD +-BUILD:=debug ++BUILD:=release + endif + + endif +@@ -108,11 +108,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 +@@ -151,9 +149,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 -lSDL_gfx ++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 -lSDL_gfx + + ############################################################################## + # Building +@@ -208,13 +205,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 + |