From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PJAiD-00041U-RA for garchives@archives.gentoo.org; Thu, 18 Nov 2010 20:04:06 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A087A1C003; Thu, 18 Nov 2010 20:04:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 783D21C003 for ; Thu, 18 Nov 2010 20:04:04 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D394B1B40DE for ; Thu, 18 Nov 2010 20:04:03 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 665) id 6FF4D20054; Thu, 18 Nov 2010 20:04:02 +0000 (UTC) From: "Michael Sterrett (mr_bones_)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mr_bones_@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in games-puzzle/sdl-jewels/files: sdl-jewels-1.1.1-Makefile.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: sdl-jewels-1.1.1-Makefile.patch X-VCS-Directories: games-puzzle/sdl-jewels/files X-VCS-Committer: mr_bones_ X-VCS-Committer-Name: Michael Sterrett Content-Type: text/plain; charset=utf8 Message-Id: <20101118200402.6FF4D20054@flycatcher.gentoo.org> Date: Thu, 18 Nov 2010 20:04:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 687f2bf7-00f1-4919-bb24-aa281b90700d X-Archives-Hash: 35731f3cd28ed3a411221603457d7bc5 mr_bones_ 10/11/18 20:04:02 Added: sdl-jewels-1.1.1-Makefile.patch Log: Initial commit - ebuild submitted by Gavin Pryke via bug #345971 (Portage version: 2.1.8.3/cvs/Linux i686) Revision Changes Path 1.1 games-puzzle/sdl-jewels/files/sdl-jewels-1.1.1-Makef= ile.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/sdl-j= ewels/files/sdl-jewels-1.1.1-Makefile.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/sdl-j= ewels/files/sdl-jewels-1.1.1-Makefile.patch?rev=3D1.1&content-type=3Dtext= /plain Index: sdl-jewels-1.1.1-Makefile.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- SDL_jewels-1.1.1/Makefile.old 2010-11-13 00:46:47.196000082 +0000 +++ SDL_jewels-1.1.1/Makefile 2010-11-13 01:45:14.516000087 +0000 @@ -1,11 +1,12 @@ EXE =3D gljewel =20 -CFLAGS =3D -O2 -Wall $(shell sdl-config --cflags) -LDFLAGS =3D $(shell sdl-config --libs) -lGL -lm +CFLAGS +=3D -Wall $(shell sdl-config --cflags) +LIBS =3D $(shell sdl-config --libs) -lGL -lm =20 OBJS =3D $(EXE).o matrix.o sound.o =20 $(EXE): $(OBJS) + $(CC) $(LDFLAGS) $^ $(LIBS) -o $@ =20 $(EXE).o: $(EXE).c matrix.h misc.h =20