From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JXiM0-0003jO-QM for garchives@archives.gentoo.org; Fri, 07 Mar 2008 19:35:41 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFD7FE08CE; Fri, 7 Mar 2008 19:35:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5DD02E08D5 for ; Fri, 7 Mar 2008 19:35:39 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 3AD23B47AB for ; Fri, 7 Mar 2008 19:35:38 +0000 (UTC) Received: from wolf31o2 by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JXhtz-0005Km-S4 for gentoo-commits@lists.gentoo.org; Fri, 07 Mar 2008 19:06:43 +0000 From: "Chris Gianelloni (wolf31o2)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, wolf31o2@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/hwsetup: hwsetup-1.2.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: hwsetup-1.2.ebuild ChangeLog X-VCS-Directories: sys-apps/hwsetup X-VCS-Committer: wolf31o2 X-VCS-Committer-Name: Chris Gianelloni Content-Type: text/plain; charset=utf8 Message-Id: Sender: Chris Gianelloni Date: Fri, 07 Mar 2008 19:06:43 +0000 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: 834b93af-78c0-4d03-b862-ed8ccb472300 X-Archives-Hash: 611554d46ff3638a7b3c1febbd0e350e wolf31o2 08/03/07 19:06:43 Modified: hwsetup-1.2.ebuild ChangeLog Log: Fix compilation when using --as-needed by filtering it, for now. (Portage version: 2.1.4.4) Revision Changes Path 1.7 sys-apps/hwsetup/hwsetup-1.2.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwsetup/h= wsetup-1.2.ebuild?rev=3D1.7&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwsetup/h= wsetup-1.2.ebuild?rev=3D1.7&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwsetup/h= wsetup-1.2.ebuild?r1=3D1.6&r2=3D1.7 Index: hwsetup-1.2.ebuild =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/sys-apps/hwsetup/hwsetup-1.2.ebuild,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- hwsetup-1.2.ebuild 20 Feb 2008 20:32:27 -0000 1.6 +++ hwsetup-1.2.ebuild 7 Mar 2008 19:06:43 -0000 1.7 @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwsetup/hwsetup-1.2.ebuild,v= 1.6 2008/02/20 20:32:27 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwsetup/hwsetup-1.2.ebuild,v= 1.7 2008/03/07 19:06:43 wolf31o2 Exp $ =20 inherit eutils toolchain-funcs flag-o-matic =20 @@ -30,6 +30,8 @@ } =20 src_compile() { + append-ldflags -s + filter-ldflags -Wl,--as-needed --as-needed if use zlib then append-ldflags -lz @@ -43,3 +45,10 @@ src_install() { einstall DESTDIR=3D"${D}" PREFIX=3D/usr MANDIR=3D/usr/share/man || die = "Install failed" } + +pkg_postinst() { + ewarn "This package is intended for usage on the Gentoo release media. = If" + ewarn "you are not building a CD, remove this package. It will not wor= k" + ewarn "properly on a running system, as Gentoo does not use any of the" + ewarn "Knoppix-style detection except for CD builds." +} 1.52 sys-apps/hwsetup/ChangeLog file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwsetup/C= hangeLog?rev=3D1.52&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwsetup/C= hangeLog?rev=3D1.52&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwsetup/C= hangeLog?r1=3D1.51&r2=3D1.52 Index: ChangeLog =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/sys-apps/hwsetup/ChangeLog,v retrieving revision 1.51 retrieving revision 1.52 diff -u -r1.51 -r1.52 --- ChangeLog 20 Feb 2008 20:32:27 -0000 1.51 +++ ChangeLog 7 Mar 2008 19:06:43 -0000 1.52 @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/hwsetup # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwsetup/ChangeLog,v 1.51 200= 8/02/20 20:32:27 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwsetup/ChangeLog,v 1.52 200= 8/03/07 19:06:43 wolf31o2 Exp $ + + 07 Mar 2008; Chris Gianelloni hwsetup-1.2.ebuild= : + Fix compilation when using --as-needed by filtering it, for now. =20 20 Feb 2008; Chris Gianelloni hwsetup-1.2.ebuild= : Removing USE=3Dlivecd since this package is now masked in the tree. --=20 gentoo-commits@lists.gentoo.org mailing list