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-puzzle/sgt-puzzles/files: sgt-puzzles-9023-gentoo.patch
Date: Sun, 28 Nov 2010 05:52:37
Message-Id: 20101128055231.5E0F520054@flycatcher.gentoo.org
1 mr_bones_ 10/11/28 05:52:31
2
3 Added: sgt-puzzles-9023-gentoo.patch
4 Log:
5 version bump (bug #346831)
6
7 (Portage version: 2.1.9.24/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 games-puzzle/sgt-puzzles/files/sgt-puzzles-9023-gentoo.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/sgt-puzzles/files/sgt-puzzles-9023-gentoo.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/sgt-puzzles/files/sgt-puzzles-9023-gentoo.patch?rev=1.1&content-type=text/plain
14
15 Index: sgt-puzzles-9023-gentoo.patch
16 ===================================================================
17 --- mkfiles.pl.old 2010-03-07 11:14:11.000000000 -0300
18 +++ mkfiles.pl 2010-03-07 11:24:20.000000000 -0300
19 @@ -1110,8 +1110,8 @@
20 "\n".
21 &splitline("CFLAGS := -O2 -Wall -Werror -ansi -pedantic -g " .
22 (join " ", map {"-I$dirpfx$_"} @srcdirs) .
23 - " `\$(GTK_CONFIG) --cflags` \$(CFLAGS)")."\n".
24 - "XLIBS = `\$(GTK_CONFIG) --libs`\n".
25 + " `pkg-config gtk+-2.0 --cflags` \$(CFLAGS)")."\n".
26 + "XLIBS = `pkg-config gtk+-2.0 --libs`\n".
27 "ULIBS =#\n".
28 "INSTALL=install\n",
29 "INSTALL_PROGRAM=\$(INSTALL)\n",
30 @@ -1130,7 +1130,7 @@
31 $objstr = &objects($p, "X.o", undef, undef);
32 print &splitline($prog . ": " . $objstr), "\n";
33 $libstr = &objects($p, undef, undef, "-lX");
34 - print &splitline("\t\$(CC) -o \$@ $objstr $libstr \$(${type}LIBS)", 69),
35 + print &splitline("\t\$(CC) \$(LDFLAGS) -o \$@ $objstr $libstr \$(${type}LIBS)", 69),
36 "\n\n";
37 }
38 foreach $d (&deps("X.o", undef, $dirpfx, "/")) {