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 1Shg9K-0007ZN-HD for garchives@archives.gentoo.org; Thu, 21 Jun 2012 12:06:11 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41C77E0AB4; Thu, 21 Jun 2012 12:05:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 17602E0ACC for ; Thu, 21 Jun 2012 12:05:43 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7B3201B4019 for ; Thu, 21 Jun 2012 12:05:42 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2264) id 3A3AA20033; Thu, 21 Jun 2012 12:05:40 +0000 (UTC) From: "Justin Lecher (jlec)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, jlec@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/lisaac/files: lisaac-0.13.1-makefile.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: lisaac-0.13.1-makefile.patch X-VCS-Directories: dev-lang/lisaac/files X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher Content-Type: text/plain; charset=utf8 Message-Id: <20120621120541.3A3AA20033@flycatcher.gentoo.org> Date: Thu, 21 Jun 2012 12:05:40 +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: 3635c745-0fec-4915-a3da-10085e385dfc X-Archives-Hash: 2eecf86381a3c3e7020e54c8e1cd1a18 jlec 12/06/21 12:05:40 Modified: lisaac-0.13.1-makefile.patch Log: dev-lang/lisaac: Respect *FLAGS, #342135 =20 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64) Revision Changes Path 1.2 dev-lang/lisaac/files/lisaac-0.13.1-makefile.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/lisaac/fi= les/lisaac-0.13.1-makefile.patch?rev=3D1.2&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/lisaac/fi= les/lisaac-0.13.1-makefile.patch?rev=3D1.2&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/lisaac/fi= les/lisaac-0.13.1-makefile.patch?r1=3D1.1&r2=3D1.2 Index: lisaac-0.13.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 RCS file: /var/cvsroot/gentoo-x86/dev-lang/lisaac/files/lisaac-0.13.1-mak= efile.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- lisaac-0.13.1-makefile.patch 12 Feb 2012 11:54:36 -0000 1.1 +++ lisaac-0.13.1-makefile.patch 21 Jun 2012 12:05:40 -0000 1.2 @@ -1,11 +1,33 @@ ---- Makefile.orig 2008-10-13 11:25:21.000000000 +0200 -+++ Makefile 2008-10-13 11:26:08.000000000 +0200 -@@ -59,7 +59,7 @@ + Makefile | 11 +++++------ + 1 files changed, 5 insertions(+), 6 deletions(-) + +diff --git a/Makefile b/Makefile +index 76e6403..9875e36 100644 +--- a/Makefile ++++ b/Makefile +@@ -59,20 +59,19 @@ EXAMPLE=3D/examples HTML=3D/html BIN=3D/usr/bin MAN=3D/usr/share/man/man1 -DOC=3D/usr/share/doc/lisaac +DOC=3D${DOC:=3D/usr/share/doc/lisaac} DESTDIR=3D - CC=3Dgcc - CFLAGS=3D-O2 +-CC=3Dgcc +-CFLAGS=3D-O2 ++CC ?=3Dgcc +=20 + all: bin/lisaac.c bin/shorter.c + @echo "#define LISAAC_DIRECTORY \"$(DESTDIR)$(LIB)\"" > bin/path.h +- $(CC) $(CFLAGS) bin/lisaac.c -o bin/lisaac=20 +- $(CC) $(CFLAGS) bin/shorter.c -o bin/shorter ++ $(CC) $(CFLAGS) $(LDFLAGS) bin/lisaac.c -o bin/lisaac=20 ++ $(CC) $(CFLAGS) $(LDFLAGS) bin/shorter.c -o bin/shorter +=20 + interactive_userland: install_lisaac.c + @echo - Lisaac compiler installation For Unix / Linux / Windows - + @echo Please wait... +- $(CC) $(CFLAGS) install_lisaac.c -o install_lisaac ++ $(CC) $(CFLAGS) $(LDFLAGS) install_lisaac.c -o install_lisaac + @echo - please run ./install_lisaac to finish the installation +=20 + install: