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 1QeKrL-0007Oo-R6 for garchives@archives.gentoo.org; Wed, 06 Jul 2011 05:41:15 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A6DD21C062; Wed, 6 Jul 2011 05:41:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EDF4C21C062 for ; Wed, 6 Jul 2011 05:41:02 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B3FA1BC0CC for ; Wed, 6 Jul 2011 05:41:02 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2139) id 1E27F2004B; Wed, 6 Jul 2011 05:41:01 +0000 (UTC) From: "Alexis Ballier (aballier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, aballier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: freebsd.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: freebsd.eclass X-VCS-Directories: eclass X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier Content-Type: text/plain; charset=utf8 Message-Id: <20110706054101.1E27F2004B@flycatcher.gentoo.org> Date: Wed, 6 Jul 2011 05:41:01 +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: X-Archives-Hash: 48e5a01dbc503deea55c0c36cc7330b9 aballier 11/07/06 05:41:01 Modified: freebsd.eclass Log: be a bit more restrictive on how to math libl so that it doesnt match l= iblzma Revision Changes Path 1.17 eclass/freebsd.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/freebsd.ecl= ass?rev=3D1.17&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/freebsd.ecl= ass?rev=3D1.17&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/freebsd.ecl= ass?r1=3D1.16&r2=3D1.17 Index: freebsd.eclass =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/eclass/freebsd.eclass,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- freebsd.eclass 5 Jul 2011 18:46:50 -0000 1.16 +++ freebsd.eclass 6 Jul 2011 05:41:01 -0000 1.17 @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/freebsd.eclass,v 1.16 2011/07/= 05 18:46:50 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/freebsd.eclass,v 1.17 2011/07/= 06 05:41:01 aballier Exp $ # # Diego Petten=C3=B2 =20 @@ -77,7 +77,7 @@ sed -i -e 's:-ltermcap:-lncurses:g; s:{LIBTERMCAP}:{LIBNCURSES}:g' # flex provides libfl, not libl find "${S}" -name Makefile -print0 | xargs -0 \ - sed -i -e 's:-ll:-lfl:g; s:{LIBL}:{LIBFL}:g' + sed -i -e 's:-ll$:-lfl:g; s:-ll :-lfl :g; s:{LIBL}:{LIBFL}:g' # ncurses provides libncursesw not libcursesw find "${S}" -name Makefile -print0 | xargs -0 \ sed -i -e 's:-lcursesw:-lncursesw:g'