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-0.97-qa.patch
Date: Sun, 30 Jan 2011 12:02:35
Message-Id: 20110130120146.D8A3220057@flycatcher.gentoo.org
1 xarthisius 11/01/30 12:01:46
2
3 Added: mandelbulber-0.97-qa.patch
4 Log:
5 Initial import. Ebuild written by me.
6
7 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-gfx/mandelbulber/files/mandelbulber-0.97-qa.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mandelbulber/files/mandelbulber-0.97-qa.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mandelbulber/files/mandelbulber-0.97-qa.patch?rev=1.1&content-type=text/plain
14
15 Index: mandelbulber-0.97-qa.patch
16 ===================================================================
17 --- src/Release/makefile.orig 2011-01-30 12:17:24.774427282 +0100
18 +++ src/Release/makefile 2011-01-30 12:19:06.741766666 +0100
19 @@ -43,7 +43,7 @@
20 mandelbulber: $(OBJS) $(USER_OBJS)
21 @echo 'Building target: $@'
22 @echo 'Invoking: GCC C++ Linker'
23 - g++ `pkg-config --libs gtk+-2.0 gthread-2.0` -o"mandelbulber" $(OBJS) $(USER_OBJS) $(LIBS)
24 + $(CXX) $(CXXFLAGS) $(LDFLAGS) -o "mandelbulber" $(OBJS) $(USER_OBJS) `pkg-config --libs gtk+-2.0 gthread-2.0` $(LIBS)
25 @echo 'Finished building target: $@'
26 @echo ' '
27
28 --- src/Release/subdir.mk.orig 2011-01-30 12:18:22.699456900 +0100
29 +++ src/Release/subdir.mk 2011-01-30 12:18:50.772927083 +0100
30 @@ -65,14 +65,14 @@
31 Render3D.o: ../Render3D.cpp
32 @echo 'Building file: $<'
33 @echo 'Invoking: GCC C++ Compiler'
34 - g++ -O2 -ffast-math -Wall -c -fmessage-length=0 `pkg-config --cflags gtk+-2.0 gthread-2.0;` -MMD -MP -MF"$(@:%.o=%.d)" -MT"Render3D.d" -o"$@" "$<"
35 + $(CXX) $(CXXFLAGS) -Wall -c -fmessage-length=0 `pkg-config --cflags gtk+-2.0 gthread-2.0;` -MMD -MP -MF"$(@:%.o=%.d)" -MT"Render3D.d" -o"$@" "$<"
36 @echo 'Finished building: $<'
37 @echo ' '
38
39 %.o: ../%.cpp
40 @echo 'Building file: $<'
41 @echo 'Invoking: GCC C++ Compiler'
42 - 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"$@" "$<"
43 + $(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"$@" "$<"
44 @echo 'Finished building: $<'
45 @echo ' '