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