Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/mandelbulber/files: mandelbulber-1.08-qa.patch mandelbulber-1.00-gcc46.patch mandelbulber-1.00-qa.patch mandelbulber-1.05-overflow.patch
Date: Sun, 04 Sep 2011 10:45:15
Message-Id: 20110904104505.6D8D520054@flycatcher.gentoo.org
1 xarthisius 11/09/04 10:45:05
2
3 Added: mandelbulber-1.08-qa.patch
4 Removed: mandelbulber-1.00-gcc46.patch
5 mandelbulber-1.00-qa.patch
6 mandelbulber-1.05-overflow.patch
7 Log:
8 Version bump wrt #380327 by Tim Harder <radhermit@g.o>, drop old
9
10 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.1 media-gfx/mandelbulber/files/mandelbulber-1.08-qa.patch
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mandelbulber/files/mandelbulber-1.08-qa.patch?rev=1.1&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mandelbulber/files/mandelbulber-1.08-qa.patch?rev=1.1&content-type=text/plain
17
18 Index: mandelbulber-1.08-qa.patch
19 ===================================================================
20 --- makefiles/makefile.orig 2011-09-04 12:36:07.388901054 +0200
21 +++ makefiles/makefile 2011-09-04 12:37:15.301900642 +0200
22 @@ -44,7 +44,7 @@
23 mandelbulber: $(OBJS) $(USER_OBJS)
24 @echo 'Building target: $@'
25 @echo 'Invoking: GCC C++ Linker'
26 - g++ `pkg-config --libs gtk+-2.0 gthread-2.0` -o"mandelbulber"$(OBJS) $(USER_OBJS) $(LIBS)
27 + $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(USER_OBJS) `pkg-config --libs gtk+-2.0 gthread-2.0` $(LIBS)
28 @echo 'Finished building target: $@'
29 @echo ' '
30
31 --- makefiles/src/subdir.mk.orig 2011-09-04 12:37:21.200901233 +0200
32 +++ makefiles/src/subdir.mk 2011-09-04 12:37:57.896900659 +0200
33 @@ -65,7 +65,7 @@
34 src/%.o: ../src/%.cpp
35 @echo 'Building file: $<'
36 @echo 'Invoking: GCC C++ Compiler'
37 - g++ -O2 -ffast-math -Wall -c -fmessage-length=0 `pkg-config --cflags gtk+-2.0 gthread-2.0;` -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
38 + $(CXX) $(CXXFLAGS) -Wall -c -fmessage-length=0 `pkg-config --cflags gtk+-2.0 gthread-2.0;` -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
39 @echo 'Finished building: $<'
40 @echo ' '