Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/mandelbulber/files: mandelbulber-1.21.1-qa.patch
Date: Sat, 08 Feb 2014 07:20:53
Message-Id: 20140208072050.6FC532004E@flycatcher.gentoo.org
1 radhermit 14/02/08 07:20:50
2
3 Added: mandelbulber-1.21.1-qa.patch
4 Log:
5 Version bump, install desktop file (bug #496042).
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
8
9 Revision Changes Path
10 1.1 media-gfx/mandelbulber/files/mandelbulber-1.21.1-qa.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mandelbulber/files/mandelbulber-1.21.1-qa.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mandelbulber/files/mandelbulber-1.21.1-qa.patch?rev=1.1&content-type=text/plain
14
15 Index: mandelbulber-1.21.1-qa.patch
16 ===================================================================
17 --- mandelbulber1.21-1.orig/makefiles/makefile
18 +++ mandelbulber1.21-1.orig/makefiles/makefile
19 @@ -5,6 +5,7 @@
20 -include ../makefile.init
21
22 RM := rm -rf
23 +CXX ?= g++
24
25 # All of the sources participating in the build are defined here
26 -include sources.mk
27 @@ -44,7 +45,7 @@
28 mandelbulber: $(OBJS) $(USER_OBJS)
29 @echo 'Building target: $@'
30 @echo 'Invoking: GCC C++ Linker'
31 - g++ -o"mandelbulber" -L/usr/lib/x86_64-linux-gnu/ $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) $(OBJS) $(USER_OBJS) $(LIBS)
32 + $(CXX) -o"mandelbulber" -L/usr/lib/x86_64-linux-gnu/ $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) $(OBJS) $(USER_OBJS) $(LIBS)
33 @echo 'Finished building target: $@'
34 @echo ' '
35
36 --- mandelbulber1.21-1.orig/makefiles/src/subdir.mk
37 +++ mandelbulber1.21-1.orig/makefiles/src/subdir.mk
38 @@ -71,7 +71,7 @@
39 src/%.o: ../src/%.cpp
40 @echo 'Building file: $<'
41 @echo 'Invoking: GCC C++ Compiler'
42 - g++ -O3 -ffast-math -Wall -c -fmessage-length=0 `pkg-config --cflags gtk+-2.0 gthread-2.0;` -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" $(CXXFLAGS) $(CPPFLAGS) -o"$@" "$<"
43 + $(CXX) -Wall -c -fmessage-length=0 `pkg-config --cflags gtk+-2.0 gthread-2.0;` -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" $(CXXFLAGS) $(CPPFLAGS) -o"$@" "$<"
44 @echo 'Finished building: $<'
45 @echo ' '