From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AEB851381F3 for ; Wed, 22 May 2013 21:35:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B2E0E0875; Wed, 22 May 2013 21:35:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01726E0875 for ; Wed, 22 May 2013 21:35:45 +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 189C033E1AF for ; Wed, 22 May 2013 21:35:45 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2304) id D4F462171D; Wed, 22 May 2013 21:35:43 +0000 (UTC) From: "Mike Gilbert (floppym)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, floppym@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/gptfdisk: gptfdisk-0.8.6.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: gptfdisk-0.8.6.ebuild ChangeLog X-VCS-Directories: sys-apps/gptfdisk X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130522213543.D4F462171D@flycatcher.gentoo.org> Date: Wed, 22 May 2013 21:35:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 12e502f1-f1cf-4a99-a293-116646e927c6 X-Archives-Hash: e163e4475d5180062a651967827ae520 floppym 13/05/22 21:35:43 Modified: gptfdisk-0.8.6.ebuild ChangeLog Log: Use correct ICU flags. Patch by Arfrever. (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4) Revision Changes Path 1.11 sys-apps/gptfdisk/gptfdisk-0.8.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gptfdisk/gptfdisk-0.8.6.ebuild?rev=1.11&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gptfdisk/gptfdisk-0.8.6.ebuild?rev=1.11&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gptfdisk/gptfdisk-0.8.6.ebuild?r1=1.10&r2=1.11 Index: gptfdisk-0.8.6.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-apps/gptfdisk/gptfdisk-0.8.6.ebuild,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- gptfdisk-0.8.6.ebuild 12 May 2013 20:22:41 -0000 1.10 +++ gptfdisk-0.8.6.ebuild 22 May 2013 21:35:43 -0000 1.11 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gptfdisk/gptfdisk-0.8.6.ebuild,v 1.10 2013/05/12 20:22:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gptfdisk/gptfdisk-0.8.6.ebuild,v 1.11 2013/05/22 21:35:43 floppym Exp $ EAPI=5 @@ -28,7 +28,7 @@ tc-export CXX PKG_CONFIG if use icu; then - append-cxxflags $(${PKG_CONFIG} --cflags icu-io icu-uc) + append-cxxflags $(${PKG_CONFIG} --variable=CXXFLAGS icu-io icu-uc) else sed \ -e 's:-licuio::g' \ 1.36 sys-apps/gptfdisk/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gptfdisk/ChangeLog?rev=1.36&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gptfdisk/ChangeLog?rev=1.36&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gptfdisk/ChangeLog?r1=1.35&r2=1.36 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-apps/gptfdisk/ChangeLog,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- ChangeLog 12 May 2013 20:22:41 -0000 1.35 +++ ChangeLog 22 May 2013 21:35:43 -0000 1.36 @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/gptfdisk # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gptfdisk/ChangeLog,v 1.35 2013/05/12 20:22:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gptfdisk/ChangeLog,v 1.36 2013/05/22 21:35:43 floppym Exp $ + + 22 May 2013; Mike Gilbert gptfdisk-0.8.6.ebuild: + Use correct ICU flags. Patch by Arfrever. 12 May 2013; Mike Frysinger gptfdisk-0.8.6.ebuild: Add USE=ncurses support.