Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-board/freedoko/files: freedoko-0.7.13-gentoo.patch
Date: Thu, 29 Jan 2015 20:35:54
Message-Id: 20150129203549.98153109CD@oystercatcher.gentoo.org
1 mr_bones_ 15/01/29 20:35:49
2
3 Added: freedoko-0.7.13-gentoo.patch
4 Log:
5 version bump
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.1 games-board/freedoko/files/freedoko-0.7.13-gentoo.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/freedoko/files/freedoko-0.7.13-gentoo.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/freedoko/files/freedoko-0.7.13-gentoo.patch?rev=1.1&content-type=text/plain
14
15 Index: freedoko-0.7.13-gentoo.patch
16 ===================================================================
17 diff -ru FreeDoko_0.7.13.orig/src/Makefile FreeDoko_0.7.13/src/Makefile
18 --- FreeDoko_0.7.13.orig/src/Makefile 2014-12-29 15:41:58.000000000 -0500
19 +++ FreeDoko_0.7.13/src/Makefile 2015-01-27 13:23:11.498892598 -0500
20 @@ -242,15 +242,7 @@
21 # compile FreeDoko
22 $(PROGRAM) : show_settings objects $(DIRECTORIES)
23 @echo 'compiling $(PROGRAM)...'
24 -# Gentoo users do want to see the real compile line.
25 -# So remove the next five lines (the echo lines)
26 -# and remove the '@' in the line after.
27 - @echo '$(CXX) $(CXXFLAGS)'
28 - @echo ' $$(OBJECTS)'
29 - @echo ' $(INCLUDE_ALL)'
30 - @echo ' $(LIBS_ALL)'
31 - @echo ' -o $@'
32 - @$(CXX) $(CXXFLAGS) \
33 + $(CXX) $(CXXFLAGS) \
34 $(OBJECTS_ALL:%.o=$(FREEDOKO_WORKING_DIRECTORY)/%.o) \
35 $(INCLUDE_ALL) \
36 $(LIBS_ALL) \
37 diff -ru FreeDoko_0.7.13.orig/src/Makefile.os FreeDoko_0.7.13/src/Makefile.os
38 --- FreeDoko_0.7.13.orig/src/Makefile.os 2014-12-29 15:41:58.000000000 -0500
39 +++ FreeDoko_0.7.13/src/Makefile.os 2015-01-27 13:23:22.185483548 -0500
40 @@ -1,6 +1,5 @@
41 include $(DEPTH)/../Makefile.os
42
43 -include $(DEPTH)/Makefile.local
44 include $(DEPTH)/Makefile.modules
45
46 ifeq ($(OPERATING_SYSTEM), Linux)
47 diff -ru FreeDoko_0.7.13.orig/src/Makefile.rules FreeDoko_0.7.13/src/Makefile.rules
48 --- FreeDoko_0.7.13.orig/src/Makefile.rules 2014-12-29 15:41:58.000000000 -0500
49 +++ FreeDoko_0.7.13/src/Makefile.rules 2015-01-27 13:23:44.780618643 -0500
50 @@ -80,10 +80,7 @@
51 $(DEPTH)/Makefile.modules \
52 $(DEPTH)/Makefile.local \
53 $(DEPTH)/Makefile.os
54 -# Gentoo users do want to see the real compile line.
55 -# So remove the next line and remove the '@' in the line after.
56 - @echo $(CXX) -c $(SUBDIR)/$<
57 - @$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(INCLUDE) $(DEPGEN_FLAGS) -o $@ -c $<
58 + $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(INCLUDE) $(DEPGEN_FLAGS) -o $@ -c $<
59
60
61 -include $(OBJECTS:%.o=$(TARGET_DIR_LOCAL)%.d)