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 08FAD1381F3 for ; Sat, 4 May 2013 17:32:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C43CAE090A; Sat, 4 May 2013 17:32:43 +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 52833E090A for ; Sat, 4 May 2013 17:32: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 4A7D533DF68 for ; Sat, 4 May 2013 17:32:42 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id 136032171D; Sat, 4 May 2013 17:32:41 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/glog: glog-0.3.3.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: glog-0.3.3.ebuild ChangeLog X-VCS-Directories: dev-cpp/glog X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130504173241.136032171D@flycatcher.gentoo.org> Date: Sat, 4 May 2013 17:32:41 +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: c5bdf919-00f9-4828-a423-6f14efa1fd09 X-Archives-Hash: ebf61ef69f842a3aa901bdf56c39a269 vapier 13/05/04 17:32:41 Modified: ChangeLog Added: glog-0.3.3.ebuild Log: Version bump #467926 by Agostino Sarubbo. (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156) Revision Changes Path 1.10 dev-cpp/glog/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/glog/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/glog/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/glog/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-cpp/glog/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 10 Jan 2013 20:40:38 -0000 1.9 +++ ChangeLog 4 May 2013 17:32:40 -0000 1.10 @@ -1,6 +1,11 @@ # ChangeLog for dev-cpp/glog # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/glog/ChangeLog,v 1.9 2013/01/10 20:40:38 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/glog/ChangeLog,v 1.10 2013/05/04 17:32:40 vapier Exp $ + +*glog-0.3.3 (04 May 2013) + + 04 May 2013; Mike Frysinger +glog-0.3.3.ebuild: + Version bump #467926 by Agostino Sarubbo. 10 Jan 2013; Mike Frysinger glog-0.3.2.ebuild: Use configure flags to install doc files and fix EAPI=4 handling of $ED. 1.1 dev-cpp/glog/glog-0.3.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/glog/glog-0.3.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/glog/glog-0.3.3.ebuild?rev=1.1&content-type=text/plain Index: glog-0.3.3.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/glog/glog-0.3.3.ebuild,v 1.1 2013/05/04 17:32:40 vapier Exp $ EAPI="4" inherit eutils DESCRIPTION="Google's C++ logging library" HOMEPAGE="http://code.google.com/p/google-glog/" SRC_URI="http://google-glog.googlecode.com/files/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" IUSE="gflags static-libs unwind test" RDEPEND="gflags? ( dev-cpp/gflags ) unwind? ( sys-libs/libunwind )" DEPEND="${RDEPEND} test? ( dev-cpp/gmock dev-cpp/gtest )" src_prepare() { epatch "${FILESDIR}"/${PN}-0.3.2-avoid-inline-asm.patch } src_configure() { export ac_cv_lib_gflags_main=$(usex gflags) export ac_cv_lib_unwind_backtrace=$(usex unwind) use test || export ac_cv_prog_GTEST_CONFIG=no econf \ --docdir="\${datarootdir}/doc/${PF}" \ --htmldir="\${datarootdir}/doc/${PF}/html" \ $(use_enable static-libs static) } src_install() { default # Punt docs we don't care about (NEWS is 0 bytes). rm "${ED}"/usr/share/doc/${PF}/{COPYING,NEWS,README.windows} # --htmldir doesn't work (yet): # https://code.google.com/p/google-glog/issues/detail?id=144 dohtml "${ED}"/usr/share/doc/${PF}/* rm "${ED}"/usr/share/doc/${PF}/*.{html,css} use static-libs || find "${ED}" -name '*.la' -delete }